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
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.
What is nested structure with example?
List a few unconditional control statement in c.
What is property type c?
Is a pointer a kind of array?
Is using exit() the same as using return?
How can I use a preprocessorif expression to ?
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
How to throw some light on the b tree?
What is switch in c?
What is integer constants?
write a program to concatenation the string using switch case?
what is event driven software and what is procedural driven software?
Which one would you prefer - a macro or a function?
What is a file descriptor in c?