main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / valli
x=57
y=94
| Is This Answer Correct ? | 29 Yes | 16 No |
Post New Answer View All Answers
Write a program with dynamically allocation of variable.
Why c is called a mid level programming language?
What are the storage classes in C?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the collection of communication lines and routers called?
explain what are pointers?
What is wrong with this statement? Myname = 'robin';
a program that can input number of records and can view it again the record
Is there a way to switch on strings?
What is c programing language?
Differentiate between Macro and ordinary definition.
#include
How does #define work?
What is character constants?
What is multidimensional arrays