#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
Between macros and functions,which is better to use and why?
What is the explanation for prototype function in c?
What is union and structure?
What are the types of macro formats?
Why do we use static in c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Who developed c language and when?
Explain a pre-processor and its advantages.
Is a pointer a kind of array?
Explain void pointer?
What is else if ladder?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Subtract Two Number Without Using Subtraction Operator
What are the advantages of the functions?
How can you find the exact size of a data type in c?