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

Answer Posted / mounica

57 91

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2658


Write a factorial program using C.

658


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

661


Why do we use int main?

625


What is the use of #include in c?

589






What does #pragma once mean?

697


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

926


What does & mean in scanf?

610


Is calloc better than malloc?

596


What is a c token and types of c tokens?

600


Is c a great language, or what?

616


How can I rethow can I return a sequence of random numbers which dont repeat at all?

718


Give me the code of in-order recursive and non-recursive.

895


Why do we need a structure?

603


What is the general form of function in c?

622