#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

What is a program flowchart and explain how does it help in writing a program?

682


What is build process in c?

647


What is a void pointer? When is a void pointer used?

629


Is c++ based on c?

657


What does sizeof function do?

618






process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1895


How many keywords (reserve words) are in c?

623


Explain Basic concepts of C language?

649


any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above

636


What is the use of in c?

583


Process by which one bit pattern in to another by bit wise operation is?

617


How can I recover the file name given an open stream or file descriptor?

600


What is include directive in c?

649


in linking some of os executables are linking name some of them

1654


swap 2 numbers without using third variable?

666