void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / prasanna

57 61

Is This Answer Correct ?    9 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is pragma in c?

623


Is struct oop?

576


How does free() know explain how much memory to release?

616


How can a string be converted to a number?

512


Why string is used in c?

580






What is the difference between %d and %i?

592


What is the difference between printf and scanf )?

587


What is volatile variable how do you declare it?

562


What is 1d array in c?

598


Write a program to check armstrong number in c?

633


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2264


Tell me when is a void pointer used?

644


What are the advantages of c preprocessor?

711


Why c is called procedure oriented language?

577


Is main is a keyword in c?

604