main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answers were Sorted based on User's Feedback



main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / sujith vargheese

Hi The correct Answer is X=55 AND y=94

Is This Answer Correct ?    1 Yes 3 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / vandana

55 93

Is This Answer Correct ?    1 Yes 12 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / guest

58

Is This Answer Correct ?    32 Yes 49 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / chandan dey

55

59

Is This Answer Correct ?    12 Yes 31 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / pooja

55 59

Is This Answer Correct ?    5 Yes 26 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / anjana

57
59

Is This Answer Correct ?    11 Yes 34 No

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf(&q..

Answer / mahendra giri

x=57
y=59

Is This Answer Correct ?    20 Yes 46 No

Post New Answer

More C Interview Questions

in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

4 Answers   Infosys, NetApp,


What is bubble sort technique in c?

0 Answers  


Is there any demerits of using pointer?

0 Answers  


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

0 Answers  


Describe the steps to insert data into a singly linked list.

0 Answers  






When should structures be passed by values or by references?

0 Answers   Adobe,


How to write the code of the program to swap two numbers with in one statement?

2 Answers  


Explain how are 16- and 32-bit numbers stored?

0 Answers  


largest Of three Number using without if condition?

0 Answers  


Is r written in c?

0 Answers  


what is data structure?

5 Answers   CBSE,


Explain what standard functions are available to manipulate strings?

0 Answers  


Categories