#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 / a.sivasankar
i=0,j=1,k=3,m=0,n=0
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
Explain why c is faster than c++?
The __________ attribute is used to announce variables based on definitions of columns in a table?
What is getch () for?
what are the 10 different models of writing an addition program in C language?
What is the heap?
What is #include stdlib h?
Can a pointer point to null?
How do you define a function?
What is use of null pointer in c?
Explain how can you check to see whether a symbol is defined?
what is uses of .net
What is a pointer in c?
What is the use of bit field?
what is the basis for selection of arrays or pointers as data structure in a program
Does * p ++ increment p or what it points to?