#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 is null defined in c?
what are non standard function in c
Is a pointer a kind of array?
What is function and its example?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Are pointers really faster than arrays?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Explain null pointer.
What is scanf_s in c?
How to compare array with pointer in c?
Why is C language being considered a middle level language?
what is the syallabus of computer science students in group- 1?
What is data structure in c programming?
What are loops c?
What is the difference between printf and scanf in c?