#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answer Posted / boopathi
0,1,2,o,o
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What is New modifiers?
If fflush wont work, what can I use to flush input?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is const and volatile in c?
the question is that what you have been doing all these periods (one year gap)
In a switch statement, explain what will happen if a break statement is omitted?
What does nil mean in c?
What is declaration and definition in c?
What is the difference between exit() and _exit() function in c?
What is the scope of static variable in c?
how do you programme Carrier Sense Multiple Access
What is variables in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
How do c compilers work?
What is the difference between union and anonymous union?