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
How was c created?
What is "Hungarian Notation"?
What is the equivalent code of the following statement in WHILE LOOP format?
Explain what is a pragma?
How can a string be converted to a number?
What 'lex' does?
Can we declare function inside main?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What will be your course of action for a push operation?
how to make a scientific calculater ?
what type of questions arrive in interview over c programming?
What is c value paradox explain?
Explain the difference between structs and unions in c?
What are the rules for the identifier?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers