two variables are added answer is stored on not for third
variable how it is possible?

Answer Posted / ruchi

#include<stdio.h>
#include<conio.h>
int main()
{
int x=10,y=15;
x = x+y;
printf("%d",x);
getch();
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1970


What is nested structure with example?

833


List a few unconditional control statement in c.

780


What is property type c?

853


Is a pointer a kind of array?

853


Is using exit() the same as using return?

943


How can I use a preprocessorif expression to ?

798


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures

2976


How to throw some light on the b tree?

832


What is switch in c?

868


What is integer constants?

827


write a program to concatenation the string using switch case?

1824


what is event driven software and what is procedural driven software?

2296


Which one would you prefer - a macro or a function?

861


What is a file descriptor in c?

835