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
What is the full form of getch?
How reliable are floating-point comparisons?
What is meant by int main ()?
Explain the concept and use of type void.
What is the easiest sorting method to use?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Which type of language is c?
a program that can input number of records and can view it again the record
How to Throw some light on the splay trees?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
Can a pointer be null?
What is function definition in c?
Explain what are run-time errors?
largest Of three Number using without if condition?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)