main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / jeke kumar gochhayat
i=-2
j=3
k=1
m=1
| Is This Answer Correct ? | 11 Yes | 12 No |
Post New Answer View All Answers
What is the heap?
What is the best style for code layout in c?
What is the maximum length of an identifier?
What is pointer to pointer in c language?
What are the basic data types associated with c?
What is #line?
What are the 5 types of organizational structures?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is the difference between null pointer and wild pointer?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Tell me with an example the self-referential structure?
How can I recover the file name given an open stream?
Why static is used in c?
What is the explanation for prototype function in c?
What are c header files?