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

0,1,2,0

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are run-time errors?

612


Why c is called object oriented language?

592


The file stdio.h, what does it contain?

670


In C programming, how do you insert quote characters (‘ and “) into the output screen?

898


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

786






What is the difference between array and pointer in c?

582


What are the modifiers available in c programming language?

743


State the difference between realloc and free.

639


Is it acceptable to declare/define a variable in a c header?

688


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1470


What is hashing in c language?

618


Sir i need notes for structure,functions,pointers in c language can you help me please

1949


Is there a built-in function in C that can be used for sorting data?

749


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3251


What is the difference between exit() and _exit() function in c?

584