Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

what is the output?

Answer Posted / vignesh1988i

x=57
y=95

Is This Answer Correct ?    9 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

23601


What is printf () in c?

1015


What are operators in c?

966


Explain how can I prevent another program from modifying part of a file that I am modifying?

1041


What is build process in c?

1083


What is main return c?

938


What are the different types of control structures in programming?

1088


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

1207


Write a program that accept anumber in words

1712


What are pragmas and what are they good for?

937


What are nested functions in c?

979


Why doesnt the call scanf work?

1140


Write a program to know whether the input number is an armstrong number.

1074


Explain the difference between getch() and getche() in c?

941


In C programming, what command or code can be used to determine if a number of odd or even?

992