ADVT POST

addition of two numbers using user input c programming tutorial beginner hindi

 Addition of two numbers using user input c programming tutorial beginner hindi


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf("enter two values");
scanf("%d%d",&a,&b);
c=a+b;
printf ("%d",c);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.