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
Why we use break in c?
What is uint8 in c?
When should you not use a type cast?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is const volatile variable in c?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is a global variable in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Define recursion in c.
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
write a program to print data of 5 five students with structures?
What does. int *x[](); means ?
How will you find a duplicate number in a array without negating the nos ?
Can you write the function prototype, definition and mention the other requirements.
Is there a built-in function in C that can be used for sorting data?