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
write a programming in c to find the sum of all elements in an array through function.
how many errors in c explain deply
What is c preprocessor mean?
What is a null string in c?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Write a program to reverse a given number in c?
What are dangling pointers in c?
Why do we need arrays in c?
Define macros.
What is register variable in c language?
Explain what are multidimensional arrays?
How can type-insensitive macros be created?
What is the advantage of a random access file?
pierrot's divisor program using c or c++ code
What is break statement?