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
What is sizeof return in c?
How to Throw some light on the splay trees?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Define VARIABLE?
Describe the steps to insert data into a singly linked list.
Explain the concept and use of type void.
What is methods in c?
Which is better between malloc and calloc?
How do you sort filenames in a directory?
Is c programming hard?
Do you know the purpose of 'register' keyword?
What is a stream water?
What does sizeof int return?
What is a keyword?
Can the “if” function be used in comparing strings?