Stick to Software programming. It's much cooler:
CODE
#include <iostream.h>
int Add()
int main()
{
int x;
int y;
cout << "Moo!/n/n";
Add();
cout << "Muhahaha!/n/n";
return 0;
}
int Add(int x, int y)
{
cout << "Enter your numbers, and we will Add them together: /n/n";
cin >> x;
cin >> y;
cout << "You added: " << x << " and " << y << "!/n/n";
return (x + y);
}
But be warned. I had no complier to test that on, so it might be screwy.
[right][snapback]480994[/snapback][/right]
Well I would be... But right now I need web programming. It's kinda for a school thing.