main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / chandrasekhar
56 93
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
Are pointers integers in c?
Explain what is the benefit of using enum to declare a constant?
What do you mean by invalid pointer arithmetic?
What is c language in simple words?
What is the purpose of sprintf?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is build process in c?
How many levels of indirection in pointers can you have in a single declaration?
why wipro wase
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Why is c fast?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What are pointers?
How do you construct an increment statement or decrement statement in C?