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
Where in memory are my variables stored?
Is it valid to address one element beyond the end of an array?
Explain what are its uses in c programming?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What's a good way to check for "close enough" floating-point equality?
Explain a file operation in C with an example.
Why do we write return 0 in c?
hi any body pls give me company name interview conduct "c" language only
Why c is faster than c++?
write a programming in c to find the sum of all elements in an array through function.
Why main is used in c?
What is sizeof int in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is string function in c?