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

Can a program have two main functions?

583


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1337


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

639


What is the use of a ‘’ character?

595


What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?

765






What does the file stdio.h contain?

610


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

1520


Here is a good puzzle: how do you write a program which produces its own source code as output?

604


How can a string be converted to a number?

527


Is c procedural or functional?

595


What is a function in c?

586


What is call by reference in functions?

580


What is the difference between int main and void main in c?

601


When we use void main and int main?

597


What is identifier in c?

558