main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / vijay
56
93
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you sort filenames in a directory?
Why we use conio h in c?
What is union and structure in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is class and object in c?
Is main is user defined function?
What is the difference between typedef struct and struct?
When should you not use a type cast?
What functions are in conio h?
What is New modifiers?
What are nested functions in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Explain indirection?
what is the diffrenet bettwen HTTP and internet protocol
What is getch () for?