main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / guest
58
| Is This Answer Correct ? | 32 Yes | 49 No |
Post New Answer View All Answers
Write a factorial program using C.
Write the syntax and purpose of a switch statement in C.
Why does the call char scanf work?
What does volatile do?
What is the difference between fread buffer() and fwrite buffer()?
What is the process to create increment and decrement stamen in c?
write a program in c language to print your bio-data on the screen by using functions.
Explain what does the function toupper() do?
What is the difference between procedural and declarative language?
What will the preprocessor do for a program?
What is the use of typedef in structure in c?
What is a static function in c?
What is a pointer in c plus plus?
What is c definition?
What is difference between scanf and gets?