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);
}

Answers were Sorted based on User's Feedback



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

Answer / jane

00131

Is This Answer Correct ?    13 Yes 3 No

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

Answer / nithya

undefined symbol 'k'
undefined symbol 'l'
undefined symbol 'm'

in the above program in the line will be change from ; to ,

int i=-1,j=-1,k=0,l=2,m;

the out put is
00131

Is This Answer Correct ?    4 Yes 1 No

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

Answer / devika

2,2,1,3,1

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Interview Questions

i need all types of question paper releted to "c" and other language.

0 Answers  


What is nested structure?

0 Answers  


1,1,5,17,61,217,?,?.

3 Answers   Apple,


what is diference between return 0 and return NULL??

3 Answers  


What is #pragma statements?

0 Answers  






why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

0 Answers  


Write the syntax and purpose of a switch statement in C.

0 Answers   Adobe,


writw a program to insert an element in the begning of a doubly linked list

1 Answers  


What is output redirection?

0 Answers  


What is the use of void pointer and null pointer in c language?

0 Answers  


print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20

8 Answers   TCS,


Why do we use int main?

0 Answers  


Categories