Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

C scanf function

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf(\n Enter 1 st Val=);
scanf(%d,&a);
printf(\n Enter 2 nd Val=);
scanf(%d,&b);
c=a+b;
printf(\n Answer=%d,c);
getch();
}

You might also like