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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you find the exact size of a data type in c?

595


Explain what are the advantages and disadvantages of a heap?

593


Is Exception handling possible in c language?

1574


Why is c called c?

620


Why is c called "mother" language?

851






Why do we use namespace feature?

576


What does 2n 4c mean?

707


What are terms in math?

582


Explain what is the difference between functions abs() and fabs()?

613


Can the size of an array be declared at runtime?

602


What is volatile variable in c with example?

581


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

717


What are unions in c?

572


What is c mainly used for?

592


What is new line escape sequence?

804