main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / sanjev kumar sasode
56 93 (ANSI)
57 94 (Turbo C)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between array and pointer in c?
Explain how can I pad a string to a known length?
What is the use of function overloading in C?
Explain pointers in c programming?
why programs in c are running with out #include
number of times a digit is present in a number
Explain what are compound statements?
Why do we use & in c?
What do you mean by invalid pointer arithmetic?
How will you find a duplicate number in a array without negating the nos ?
Explain indirection?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
How can I call fortran?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Distinguish between actual and formal arguments.