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 structure and union in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is the purpose of void in c?
What are the key features in c programming language?
Why does everyone say not to use gets?
What are the 4 data types?
What is the scope of local variable in c?
List some of the static data structures in C?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
application attempts to perform an operation?
What is an auto keyword in c?
Explain do array subscripts always start with zero?
What is modifier & how many types of modifiers available in c?
What is the difference between array and structure in c?
Can we use any name in place of argv and argc as command line arguments?