main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / mayur dharmik
printf("%d%d%d",i,j,k,m);
it has only 3 %d.
So, it will print only 3 value.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is define directive?
Explain what is the benefit of using const for declaring constants?
What are enums in c?
Explain about C function prototype?
Is register a keyword in c?
What is static volatile in c?
Is array name a pointer?
What is the difference between char array and char pointer?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
write a c program to find the sum of five entered numbers using an array named number
How does placing some code lines between the comment symbol help in debugging the code?
Is that possible to store 32768 in an int data type variable?
What is c language in simple words?
Differentiate between the = symbol and == symbol?
What does == mean in texting?