Start
Control Statements
Array
Function
Structure
Pointer
File
Projects
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,s;
clrscr();
printf("Enter the numbers which we have to find sum");
scanf("%d%d",&a,&b);
s=a+b;
printf("The sum is %d",s);
getch();
}
Copyright © 2007-2008 www.ckalari.com