#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 / boopathi

0,1,2,o,o

Is This Answer Correct ?    2 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we use break in c?

556


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

1865


What is break in c?

590


Implement bit Array in C.

678


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1361






What is calloc()?

633


Why can’t constant values be used to define an array’s initial size?

840


Explain why can’t constant values be used to define an array’s initial size?

861


What is 1d array in c?

602


How can I get the current date or time of day in a c program?

654


What is keyword with example?

646


c program to compute AREA under integral

1817


What are the 5 types of inheritance in c ++?

590


What is the difference between scanf and fscanf?

669


Discuss the function of conditional operator, size of operator and comma operator with examples.

682