#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / gaurav
5
12
| Is This Answer Correct ? | 35 Yes | 14 No |
Post New Answer View All Answers
Explain how do you view the path?
Tell us the use of fflush() function in c language?
Can we compile a program without main() function?
How many loops are there in c?
What is a const pointer in c?
What does struct node * mean?
How many bytes are occupied by near, far and huge pointers (dos)?
write a c program to find the sum of five entered numbers using an array named number
Is python a c language?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What would be an example of a structure analogous to structure c?
Explain a file operation in C with an example.
What language is windows 1.0 written?
What is main () in c?