int main()
{
int i=-1,j=-1;k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d%d%d%d%d",i,j,k,l,m);
}
Answer Posted / devika
2,2,1,3,1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are pointers in C? Give an example where to illustrate their significance.
What is oops c?
Is it possible to execute code even after the program exits the main() function?
Is void a keyword in c?
What is the difference between local variable and global variable in c?
Why does not c have an exponentiation operator?
What are unions in c?
largest Of three Number using without if condition?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is a constant and types of constants in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Explain void pointer?
What is function and its example?
What is register variable in c language?
What are the loops in c?