ADVT POST

c program addition of two numbers basic beginner c programs tutorial

 c program addition of two numbers basic beginner c programs tutorial


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a=10;
int b=20;
int c;
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.