#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 / navin jaiswal

1 2 3 1 0

Is This Answer Correct ?    1 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between Structure and Unions?

634


Differentiate between static and dynamic modeling.

613


What is output redirection?

687


What are the 5 organizational structures?

567


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

828






Explain how can you avoid including a header more than once?

595


Explain #pragma statements.

600


Why isn't any of this standardized in c? Any real program has to do some of these things.

621


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2573


What is meant by high-order and low-order bytes?

650


What is an expression?

652


How can a string be converted to a number?

512


how to find anagram without using string functions using only loops in c programming

2712


Where define directive used?

600


What is the full form of getch?

580