#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
What is extern storage class in c?
How can I find the modification date of a file?
What are runtime error?
Which is more efficient, a switch statement or an if else chain?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Can we replace the struct function in tree syntax with a union?
What is a program flowchart and explain how does it help in writing a program?
Write a program that accept anumber in words
What are the 4 types of unions?
What are Macros? What are its advantages and disadvantages?
Differentiate between ordinary variable and pointer in c.
What is the ANSI C Standard?
What are the different types of linkage exist in c?
What is the newline escape sequence?
What are the storage classes in C?