welcome my friends
This blog is created for those people who are interested in learning computer
this blog will help you to learn basics of computer and programing languages
Search This Blog
Sunday, June 26, 2011
Add two Numbers witout using + sign
Add two Numbers without using '+' sign
#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=10,c;
c=a-(-b);
printf("total of a and b is %d",c);
getch();
}
No comments:
Post a Comment