#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}
Answer Posted / gopinath.j
2 1 1
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Is c high or low level?
Why c is a mother language?
What is difference between structure and union in c programming?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is a static function in c?
Who invented bcpl language?
What is malloc calloc and realloc in c?
Explain how can you be sure that a program follows the ansi c standard?
What is the use of in c?
What are the 4 types of unions?
Why is it important to memset a variable, immediately after allocating memory to it ?
What are local static variables?
What does %d do?
What are the differences between Structures and Arrays?
What is static memory allocation? Explain