HOME

Start

Control Statements

Array

Function

Structure

Pointer

File

Projects

 

 

 

 

 

 

C programing

Ckalari.com is the No.1 website to get the best of C programs, free source codes, projects in c language……  

A C program to find Sum of two given numbers

#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