#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 / aravind
0,1,2,0,0
| Is This Answer Correct ? | 11 Yes | 11 No |
Post New Answer View All Answers
What is a protocol in c?
How do we declare variables in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are qualifiers and modifiers c?
I heard that you have to include stdio.h before calling printf. Why?
What are the different types of control structures in programming?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
There seem to be a few missing operators ..
When is the “void” keyword used in a function?
What is mean by data types in c?
What is new line escape sequence?
What is the right type to use for boolean values in c?
Explain what is operator promotion?
What are qualifiers in c?
What does %d do?