#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}

Answer Posted / deepshree sinha

i=1,j=2,k=3,m=0,n=1

Is This Answer Correct ?    7 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between c &c++?

643


Can math operations be performed on a void pointer?

583


What functions are used for dynamic memory allocation in c language?

597


How can you read a directory in a C program?

647


What is floating point constants?

685






How can I read data from data files with particular formats?

599


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

1446


How do I read the arrow keys? What about function keys?

610


Why c is procedure oriented?

566


What does volatile do?

563


explain what is fifo?

630


Explain the difference between strcpy() and memcpy() function?

590


can we change the default calling convention in c if yes than how.........?

2030


What is c language and why we use it?

618


What is meant by inheritance?

630