void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / hussain reddy
12
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are the different types of objects used in c?
How can a string be converted to a number?
Who invented bcpl language?
What is the description for syntax errors?
What is use of null pointer in c?
What do header files do?
Under what circumstances does a name clash occur?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How are pointers declared in c?
How do you use a pointer to a function?
Explain how are 16- and 32-bit numbers stored?
What is modifier & how many types of modifiers available in c?
What is a string?
What is the use of function overloading in C?
I have seen function declarations that look like this