#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
What is difference between structure and union in c programming?
Explain how can I convert a string to a number?
When should I declare a function?
State the difference between x3 and x[3].
What is #define?
Explain the ternary tree?
Explain heap and queue.
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the use of typedef in c?
how we can make 3d venturing graphics on outer interface
How will you divide two numbers in a MACRO?
can any one provide me the notes of data structure for ignou cs-62 paper
How can a process change an environment variable in its caller?
Is return a keyword in c?