#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
What is sizeof in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is static memory allocation? Explain
Describe wild pointers in c?
What is the meaning of 2d in c?
Write program to remove duplicate in an array?
What is the advantage of c?
What is a stream?
What are the 4 types of organizational structures?
in iso what are the common technological language?
What are the 5 types of organizational structures?
Is void a keyword in c?
What is the benefit of using #define to declare a constant?
How pointer is different from array?
In c language can we compile a program without main() function?