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
Tell me what are bitwise shift operators?
How reliable are floating-point comparisons?
What is maximum size of array in c?
How do I read the arrow keys? What about function keys?
How can I sort more data than will fit in memory?
What is the importance of c in your views?
Difference between Function to pointer and pointer to function
What is #line?
What is non linear data structure in c?
What is p in text message?
Explain how can I avoid the abort, retry, fail messages?
What are the different types of errors?
Write a program to print ASCII code for a given digit.
Explain which function in c can be used to append a string to another string?
Explain continue keyword in c