main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / chandan dey
55
59
| Is This Answer Correct ? | 12 Yes | 31 No |
Post New Answer View All Answers
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Multiply an Integer Number by 2 Without Using Multiplication Operator
write a program to find the given number is prime or not
What would be an example of a structure analogous to structure c?
Explain the Difference between the New and Malloc keyword.
What is difference between class and structure?
What are the types of pointers?
What is the difference between abs() and fabs() functions?
What is string in c language?
What should malloc(0) do?
What are the features of c languages?
What are keywords c?
Why is c so powerful?
Is using exit() the same as using return?