Answer Posted / sandeep gupta
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,j,sum;
printf("enter two numbers");
scanf("%d%d",&i,&j);
sum=i+j;
printf("sum=%d",sum);
getch();
}
getch is missed which hold the output result on the screen.that's why i add the GETCH in this program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is stl language?
what is template and type convertion
What are the different types of stl containers?
Can we use stl in coding interviews?
What is the use of stl?
What is stl in c++ with example?
What is a list in c++ stl?
What is meant by stl in c++?
What is a stl vector?
Is string part of stl?
Is stl part of c++ standard?
What are stl algorithms?
What is a standard template library (stl)? What are the various types of stl containers?
Who wrote stl?
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?