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

can v write main() { main(); } Is it true?

6 Answers  


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

0 Answers  


code for inverse a matrix

0 Answers  


implement NAND gate logic in C code without using any bitwise operatior.

4 Answers   Alcatel,


What are data structures in c and how to use them?

0 Answers  






I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

0 Answers   Oracle,


What tq means in chat?

0 Answers  


What are header files and what are its uses in C programming?

0 Answers  


What is function prototype?

0 Answers  


Where static variables are stored in memory in c?

0 Answers  


What is return in c programming?

0 Answers  


void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }

5 Answers  


Categories