#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's the best way of making my program efficient?
Can a variable be both static and volatile in c?
What is the purpose of 'register' keyword in c language?
What's the total generic pointer type?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Write a program to print fibonacci series using recursion?
What is dynamic variable in c?
What is use of null pointer in c?
What is the meaning of typedef struct in c?
How do you override a defined macro?
What are pointers in C? Give an example where to illustrate their significance.
What is a struct c#?
How does #define work?
What is a void * in c?
differentiate built-in functions and user – defined functions.