#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 / navin jaiswal
1 2 3 1 0
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
How can I find out how much free space is available on disk?
What are the types of c language?
What are different storage class specifiers in c?
What is the significance of c program algorithms?
Can stdout be forced to print somewhere other than the screen?
What are actual arguments?
What is the difference between a free-standing and a hosted environment?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
simple program of graphics and their output display
explain what are pointers?
What does it mean when a pointer is used in an if statement?
Describe newline escape sequence with a sample program?
When the macros gets expanded?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Where does the name "C" come from, anyway?