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
Can two or more operators such as and be combined in a single line of program code?
how many errors in c explain deply
How can I do serial ("comm") port I/O?
What does nil mean in c?
provide an example of the Group by clause, when would you use this clause
How many loops are there in c?
Can we use visual studio for c?
How is a null pointer different from a dangling pointer?
Explain the Difference between the New and Malloc keyword.
Do pointers store the address of value or the actual value of a variable?
Explain what header files do I need in order to define the standard library functions I use?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is meant by operator precedence?
Explain how can a program be made to print the name of a source file where an error occurs?
Where is volatile variable stored?