Header Ads

Hii,I am Anand Nayak.This blogger is make for specially basic programs of some language.

Read variable with sum of any two number

#include<stdio.h>
#include<conio.h>
void main()
 {
    int a,b,c;
    printf("Enter any two number");
    scanf("%d %d",&a,&b);    //predifine function
    c=a+b;
    printf("sum of two numbers are=",c);
getch();
}

No comments