int main()
{
int i=-1,j=-1;k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d%d%d%d%d",i,j,k,l,m);
}
Answers were Sorted based on User's Feedback
Answer / nithya
undefined symbol 'k'
undefined symbol 'l'
undefined symbol 'm'
in the above program in the line will be change from ; to ,
int i=-1,j=-1,k=0,l=2,m;
the out put is
00131
| Is This Answer Correct ? | 4 Yes | 1 No |
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
What are preprocessor directives in c?
Explain how can you tell whether two strings are the same?
no consistent academics. how to answer the question
How is pointer initialized in c?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
write a program without using main function?
Can true be a variable name in c?
Tell me what is null pointer in c?
Explain high-order and low-order bytes.
What is a const pointer in c?