My first post
This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.
#include<stdio.h>
#include<conio.h>
main ()
{
int a, b, sum ;
printf (''Enter the value of a:");
scanf ("%d", &a);
printf (''Enter the value of b:");
scanf ("%d", &b);
sum= a+b;
printf ("The total is %d", sum);
return 0;
}
Comments
Post a Comment