#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 / saravanan
0,1,2,0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between text and binary modes?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Differentiate between a for loop and a while loop? What are it uses?
What is the difference between ++a and a++?
What is pointers in c with example?
What is optimization in c?
What does do in c?
What is queue in c?
How can I pad a string to a known length?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the difference between if else and switchstatement
Not all reserved words are written in lowercase. TRUE or FALSE?
What is scanf_s in c?
Explain what is the difference between the expression '++a' and 'a++'?
Can you apply link and association interchangeably?