#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 are the characteristics of arrays in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
what is a constant pointer in C
How can you avoid including a header more than once?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How can you allocate arrays or structures bigger than 64K?
What is string constants?
What is #define size in c?
Are pointers really faster than arrays?
how to make a scientific calculater ?
What is return in c programming?
What are header files in c programming?
What is a static variable in c?
Is it possible to have a function as a parameter in another function?
Why header files are used?