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
output
-220
i.e,
i=-2, j=2, k=0.
it will print only 1st three value.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Explain the use of 'auto' keyword
write a program to concatenation the string using switch case?
Differentiate between full, complete & perfect binary trees.
Which one would you prefer - a macro or a function?
What is the difference between functions abs() and fabs()?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Explain what is gets() function?
What is the purpose of main( ) in c language?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What are the types of i/o functions?
Explain low-order bytes.
What is the size of enum in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Explain how can I avoid the abort, retry, fail messages?