int main()
{
int i=-1,j=-1;k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d%d%d%d%d",i,j,k,l,m);
}

Answer Posted / devika

2,2,1,3,1

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the benefit of using #define to declare a constant?

609


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2000


What is the purpose of clrscr () printf () and getch ()?

595


What is the use of a conditional inclusion statement in C?

602


What is the process to generate random numbers in c programming language?

610






What is signed and unsigned?

644


Between macros and functions,which is better to use and why?

1570


Write a program to implement queue.

666


How can a program be made to print the name of a source file where an error occurs?

731


Tell me when would you use a pointer to a function?

608


Explain heap and queue.

589


Is it possible to use curly brackets ({}) to enclose single line code in c program?

800


What is #line?

611


What is a substring in c?

588


how many key words availabel in c a) 28 b) 31 c) 32

635