#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 / abc
1 1 2 0 0
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Explain 'bit masking'?
What are the c keywords?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
The file stdio.h, what does it contain?
What are the preprocessor categories?
What does it mean when the linker says that _end is undefined?
What is a structural principle?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is modeling?
What are the disadvantages of external storage class?
Explain what are binary trees?
How can I sort more data than will fit in memory?
What is a newline escape sequence?
What are logical errors and how does it differ from syntax errors?
What are the properties of union in c?