main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / s.srinivasulu
Answer:
x=57
y=94
| Is This Answer Correct ? | 14 Yes | 6 No |
Post New Answer View All Answers
What is spark map function?
int i=10; printf("%d %d %d", i, i=20, i);
Who developed c language?
What is sorting in c plus plus?
What does it mean when the linker says that _end is undefined?
Describe newline escape sequence with a sample program?
Write the syntax and purpose of a switch statement in C.
In a switch statement, explain what will happen if a break statement is omitted?
Is there any possibility to create customized header file with c programming language?
What is an expression?
What is operator precedence?
What does main () mean in c?
What are the scope of static variables?
Can you please explain the scope of static variables?
What is define directive?