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

0,1,2,0,0

Is This Answer Correct ?    11 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

string reverse using recursion

1805


Explain how do you generate random numbers in c?

618


Why is it that not all header files are declared in every C program?

676


Tell me what is null pointer in c?

610


What is binary tree in c?

617






What is static memory allocation?

599


Explain how can you check to see whether a symbol is defined?

655


Difference between malloc() and calloc() function?

652


What does calloc stand for?

643


Why enum is used in c?

521


What is a list in c?

612


Explain what is the benefit of using an enum rather than a #define constant?

714


What is difference between array and pointer in c?

534


what type of questions arrive in interview over c programming?

1551


What is an operator?

654