Sponsored Links

Interview Questions



INTERVIEW QUESTIONS C BRANCHES & LOOPS IN C DETAILS

Question: void main()
{
int x=20,y=35;
x= y++ + x++;
y= ++y + ++x;
printf("
%d %d" , x,y);
}
/* please tell me the value of x and y at each and every moment. i dont need the answer but the explanation of the anamolus behavior of increment expression.*/

Answer: the answar x=57 & y=94
from first equqtion
x=y++ +x++
x=35+20=55
then X++=56
&y=36

now from second equation
y=++y + ++x
x now 57 & y=37
y=57+37=94
which is desire output

Category Branches & Loops in C Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.2) By 8273 users
Added on 8/3/2013
Views 69750
Rate it!

Question: void main()
{
int x=20,y=35;
x= y++ + x++;
y= ++y + ++x;
printf("
%d %d" , x,y);
}
/* please tell me the value of x and y at each and every moment. i dont need the answer but the explanation of the anamolus behavior of increment expression.*/


Answer:

the answar x=57 & y=94
from first equqtion
x=y++ +x++
x=35+20=55
then X++=56
&y=36

now from second equation
y=++y + ++x
x now 57 & y=37
y=57+37=94
which is desire output Source: CoolInterview.com

Answered by: Vijay Bhasakr Semwal | Date: 8/4/2008 | Contact Vijay Bhasakr Semwal Contact Vijay Bhasakr Semwal

x=57,y=55 Source: CoolInterview.com

Answered by: thangapriya | Date: 8/4/2008 | Contact thangapriya Contact thangapriya

X = 57 Y= 93 Source: CoolInterview.com

Answered by: ramang | Date: 8/4/2008 | Contact ramang Contact ramang

answer is 5794
x=21+36+57
y=36+58=94

the new value of x in case of y is 57 and after incremented as 58 Source: CoolInterview.com

Answered by: Ankit Thakur | Date: 8/4/2008 | Contact Ankit Thakur Contact Ankit Thakur

Final values : x = 57 and y = 94

Explanation:
In the expression, x=y++ + x++;
original values of y and x are added together first and then their values are incremented, therefore since x=20 and y=35, new value of 'x' is 20+35=55.
After this expression, x=56 and y=36.
Now y= ++y + ++x; values of y and x are first incremented (x=57 & y=37)and then added.therefore finally y =37+57= 94.
Hence x=57 and y= 94. Source: CoolInterview.com

Answered by: Shaikh Neehal | Date: 8/4/2008 | Contact Shaikh Neehal Contact Shaikh Neehal

output of your source code is:-
55 93 Source: CoolInterview.com

Answered by: gurpreet singh | Date: 8/4/2008 | Contact gurpreet singh Contact gurpreet singh

ans. of your ques.is:-
x=35+20=55;
so x=55;
y=36;
y=37+56=93;
so
x=55
y=93

Source: CoolInterview.com

Answered by: deepak pareek | Date: 8/5/2008 | Contact deepak pareek Contact deepak pareek

57 94 Source: CoolInterview.com

Answered by: Amit | Date: 8/7/2008 | Contact Amit Contact Amit

x=y+x, y=y+1=36 and x=x+1=21;
=35+20,
=55;so latest value of x is 55 and y is 36;
y=(y+1)+(x+1)=37+56=93; Source: CoolInterview.com

Answered by: venkateshappala | Date: 8/8/2008 | Contact venkateshappala Contact venkateshappala

x=35+20=55
now the value of:-x=21,y=36
y=37+56=93
hence output will be
x=55,y=93 Source: CoolInterview.com

Answered by: srikrishna | Date: 8/9/2008 | Contact srikrishna Contact srikrishna

The answer is -
1) For the first equation -
x = y++ + x++
x = 35 + 20 = 55
2) For the second one
y = 37 + 57 = 94

This is because in the first expression the post increment operation is used. Hence here the values of x and y are first added using the initial values and then incremented.

In the second expression the pre increment operator is used. Hence here first both x and y values are incremented first and then added. Source: CoolInterview.com

Answered by: Sandeep | Date: 8/11/2008 | Contact Sandeep Contact Sandeep

The print where u have given doesn't explain the details of operation. Below I gave detail steps:

int x=20,y=35;
x= y++ + x++; // At this point x = 35 + 20 As its post increment.
//Here x= 56
y= ++y + ++x; // At this point y = 37 + 57 As its post and pre increment.
printf("
%d %d" , x,y);

Final answer is x = 57 and y = 94 Source: CoolInterview.com

Answered by: Srinidhi | Date: 11/7/2008 | Contact Srinidhi Contact Srinidhi

answer is x=57 ,y=94 Source: CoolInterview.com

Answered by: nagaraju | Date: 9/25/2009 | Contact nagaraju Contact nagaraju

The answers are,
x=57,y=94.
1.x=20,y=35;
2.x=y++ + x++=36+21,so x=57;
3.y=++y + ++x=36+58,so y=94 Source: CoolInterview.com

Answered by: k.ganeshwari | Date: 2/13/2010 | Contact k.ganeshwari Contact k.ganeshwari

o/p will be x=57 y=94.
in 1st stat. x & y gets added first
then incremanted.so,
x=20+35=55
now increment takes place
so x=56,y=36
in 2nd stat.x & y incremanted first
then added.so,
x will become 57 y will become 37.
now added so y= 57+37=94
so o/p will be x=57 y=94. Source: CoolInterview.com

Answered by: shashank kumar | Date: 7/29/2010 | Contact shashank kumar Contact shashank kumar

in post increment the operations done before increment.....
in pre increment the operations done after increment.....
x=y++ + x++(here the operation of adding x and y completed first.... after the only the value of x and y get increased.... x=55
after assigning x value as 55 then the value of x and y get increased by one..... x=56 y=36
y= ++Y + ++x;
here the value of x and y get increased before add their value...
x=57,y=37
these 2 values added and the value will be assigned to y...
y=57+37=94.... Source: CoolInterview.com

Answered by: murugesan | Date: 8/26/2010 | Contact murugesan Contact murugesan

No guys...
The answer is x=56 y=93 (I tried out!!!It works)

Explanation:
In first Statement,
x=x++ + y++;
x=(20+35)=55; Before storing the 55 to x,Increments are done.So x=20 already,it is incremented as 21.similarly y becomes 36.
After that,the evaluated value 55 replaces the 21 and Now x=55 ,y=36

In Second Statement,
y=++x + ++y;
y=(55+1)+(36+1)
Because of pre-increment X,Y are icremented before evaluating the expression.Hence x=56 and after expression y becomes 93
Source: CoolInterview.com

Answered by: SELVARAJAN | Date: 8/3/2016 | Contact SELVARAJAN Contact SELVARAJAN


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
How to print 1 to 100 without using any conditional loop?
View Answer
How to decide even and odd values without decision making loops?
View Answer
Nesting of loops in C may continue upto how many levels?
View Answer
if "condition"
printf("Hello");
else
printf("World")

what should be the condition,
so the output will be HelloWorld.
printf("Hello");
else
printf("World")

what should be the c - Branches & Loops in C Interview Questions & Answers"> View Answer
C Program to print the following series:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
View Answer
fibbonaci series program

View Answer
why n++ executes faster than n+1?


View Answer
main()
{
float me = 1.1;
double you = 1.1;
if(me==you)
printf("I love U");
else
printf("I hate U");
}


else
View Answer
x) main()
{
printf("%x",-1<<4);
}


}


- Branches & Loops in C Interview Questions & Answers"> View Answer
How to find entered number is EVEN or ODD without using conditional statement(not using if.. else,if.. , else if..,while, do... while...., for....)

View Answer
Can include files be nested?
View Answer
Is NULL always defined as 0?
View Answer
Which expression always return true? Which always return false?
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All Branches & Loops in C Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions