void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / dhakchina moorthy.p
12
| Is This Answer Correct ? | 27 Yes | 5 No |
Post New Answer View All Answers
What is optimization in c?
What is wrong with this declaration?
What is the use of a conditional inclusion statement in C?
What is table lookup in c?
What is typeof in c?
What is string concatenation in c?
What is nested structure with example?
Explain the use of 'auto' keyword
How can I automatically locate a programs configuration files in the same directory as the executable?
What is the advantage of an array over individual variables?
Which is better malloc or calloc?
How can you avoid including a header more than once?
What is the purpose of macro in C language?
What is the use of typedef in structure in c?
What is printf () in c?