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


Please Help Members By Posting Answers For Below Questions

What is preprocessor with example?

578


How can you access memory located at a certain address?

663


Do you know what are bitwise shift operators in c programming?

583


What is the difference between union and anonymous union?

833


How are portions of a program disabled in demo versions?

745






How many parameters should a function have?

663


What oops means?

580


How to declare a variable?

566


In which language linux is written?

599


Which is the memory area not included in C program? give the reason

1504


where are auto variables stored? What are the characteristics of an auto variable?

588


When should volatile modifier be used?

554


ATM machine and railway reservation class/object diagram

4800


What are the features of the c language?

640


to find the closest pair

1816