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

1 1 2 0 0

Is This Answer Correct ?    2 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is conio h in c?

622


Write a program to generate the Fibinocci Series

656


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

758


What is a pointer in c plus plus?

690


Can you write the function prototype, definition and mention the other requirements.

656






How can you invoke another program from within a C program?

611


Can you apply link and association interchangeably?

669


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

664


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3138


general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only

584


Explain high-order and low-order bytes.

662


What is use of #include in c?

590


What is the best way to store flag values in a program?

578


What are void pointers in c?

574


find the sum of two matrices and WAP for it.

628