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
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 |
Which is better between malloc and calloc?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
How important is structure in life?
What is the purpose of clrscr () printf () and getch ()?
What is the use of bitwise operator?
What is the purpose of sprintf() function?
how to swap 2 numbers within a single statement?
Why doesnt long int work?
input any 4 digit number and find the difference of all the digits?
What is the return type of sizeof?
What is meant by global static? why we have to use static variable instead of Global variable
What's the difference between calloc() and malloc()?