#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 / santhoshrpai
1,1,2,0,1
| Is This Answer Correct ? | 41 Yes | 10 No |
Post New Answer View All Answers
Difference between goto, long jmp() and setjmp()?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Why & is used in scanf in c?
What is chain pointer in c?
Explain how do you determine whether to use a stream function or a low-level function?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Explain high-order bytes.
Write a program to find factorial of a number using recursive function.
Write a program of prime number using recursion.
What are the disadvantages of c language?
Why structure is used in c?
What is malloc() function?
Explain the red-black trees?
Explain what is the difference between a string and an array?
What is the difference between break and continue?