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

1,2,3,1,1

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is typedf?

674


Is c# a good language?

614


Explain the use of 'auto' keyword

685


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

677


Why is main function so important?

619






Tell me about low level programming languages.

649


What are structures and unions? State differencves between them.

621


What does %d do in c?

551


How can I generate floating-point random numbers?

613


What is the difference between ā€˜gā€™ and ā€œgā€ in C?

2659


What does != Mean in c?

594


Is it valid to address one element beyond the end of an array?

678


What is the heap in c?

647


Why is c platform dependent?

628


What are the types of arrays in c?

627