Standard Template Library (STL) Question:

How to get the sum of two integers?

Standard Template Library (STL) Interview Question
Standard Template Library (STL) Interview Question

Answer:

#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);
}


Previous QuestionNext Question
Tell me about c++?Why we are using the fork command and how it works?