Earn while u Learn

Tips tweaks hacks on computer with C C++ VB tutorials and ways to earn money online

ad
Showing posts with label sum of two number in c. Show all posts
Showing posts with label sum of two number in c. Show all posts

sum of two nubers

This program is the first program to calculate the sum of two numbers in C.

CODE:
__________________________________________________________

#include(stdio.h)
#include(conio.h)

main()
{
int x,y,sum=0;
printf("Enter two number");
scanf("%d%d",&x,&y);
sum=x+y;
printf("sum = %d ",sum);
getch();
}

__________________________________________________________

Sign in / Join

Labels