What will be the output of the following program
#include<stdio.h>
void main()
{
int i=20;
i-=i+++++i++;
printf("%d",i);
}
Answer Posted / anil kumar singh
this program depend on compiler dos turbo3 cpp
error msg:Lvalue required
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How can I read/write structures from/to data files?
Explain the difference between the local variable and global variable in c?
What functions are used in dynamic memory allocation in c?
How can you increase the allowable number of simultaneously open files?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Why ca not I do something like this?
How can I find out if there are characters available for reading?
What is null pointer constant?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is the use of a static variable in c?
What are register variables in c?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is difference between array and pointer in c?
What is the difference between char array and char pointer?
How is pointer initialized in c?