void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / surenda pal singh chouhan
Compiler Error
Explanation:
The expression i+++++i is parsed as i ++ ++ + i which is an
illegal combination of operators.
| Is This Answer Correct ? | 17 Yes | 9 No |
Post New Answer View All Answers
Explain what are multibyte characters?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Is exit(status) truly equivalent to returning the same status from main?
Is there any possibility to create customized header file with c programming language?
What is the process of writing the null pointer?
What is && in c programming?
How do I get an accurate error status return from system on ms-dos?
Which driver is a pure java driver
What are categories used for in c?
What is s or c?
How can I read a binary data file properly?
Why do we use namespace feature?
Why we not create function inside function.
Is null equal to 0 in sql?
What is clrscr in c?