I am VERY new to C++. I want to make 2d games, but I want to learn all the basics first. (I only want to learn to make games and stuff :P)
So I have a basic calculator going on here. So, when I run the .exe file (if I ever want to make it downloadable or something), the title of the program is the directory it's in. How can I name the window to something like "Basic caluclator"? Thanks!
#include <conio.h>
#include <iostream>
usingnamespace std;
int main(){
int a;
int b;
int c;
cout << "Enter the first number \n";
cin >> a;
cout << "Enter the second number \n";
cin >> b;
c = a + b;
cout << "The answer is: " << c << endl;
getch();
return 0;
}