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
What is define directive?
What are the 4 types of unions?
What are the different types of pointers used in c language?
What are 3 types of structures?
how logic is used
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Who invented b language?
When should I declare a function?
write a c program to find the sum of five entered numbers using an array named number
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Differentiate between the = symbol and == symbol?
What math functions are available for integers? For floating point?
How can I find out if there are characters available for reading?
Explain what is page thrashing?
I heard that you have to include stdio.h before calling printf. Why?