#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 / deepshree sinha
i=1,j=2,k=3,m=0,n=1
| Is This Answer Correct ? | 7 Yes | 11 No |
Post New Answer View All Answers
What the different types of arrays in c?
What is a newline escape sequence?
How can I do graphics in c?
Why malloc is faster than calloc?
what is the syallabus of computer science students in group- 1?
What does static variable mean in c?
What do mean by network ?
What is meant by initialization and how we initialize a variable?
What is difference between structure and union?
What is assignment operator?
how to find anagram without using string functions using only loops in c programming
How can I find the modification date and time of a file?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Is linux written in c?
Differentiate between functions getch() and getche().