Thursday, 30 August 2018

INPUT TWO NO AND SUM IT

INPUT TWO NO AND SUM IT

#include<stdio.h>

#include<conio.h>

void main()

{

int a,b,c;

clrscr();

printf("enter two no");

scanf("%d%d",&a,&b);

c=a+b;

printf("sum=%d",c);

getch();

}

Saturday, 4 August 2018

Definition of c programing

  • (1) what is program?

  1. ans- it is set of instructions that execute step-by-step and to accomplishing a specific computing task
  2. (2) programming language- c,c++, java, vb,c# etc. 

INPUT TWO NO AND SUM IT

INPUT TWO NO AND SUM IT #include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("ente...