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

Write a program to identify if a given binary tree is balanced or not.

691


swap 2 numbers without using third variable?

666


Tell me is null always defined as 0(zero)?

677


What is bubble sort in c?

640


Is anything faster than c?

591






Define VARIABLE?

692


How do you define CONSTANT in C?

657


Explain how do you determine a file’s attributes?

599


What is "Duff's Device"?

705


What does %d do in c?

550


Why does everyone say not to use gets?

612


What is the acronym for ansi?

636


What is the difference between arrays and pointers?

638


What do you mean by c?

593


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

2989