C++ and Assembly are must haves if you are focusing on designing, coding for, or working with hardware of all types and for games, too. Plus, even if you do not do anything with whatever you learn, keeping the brain active (reasonably) keeps its decay/decline at bay. :hail:
I read that C++ is the foundation for a lot of stuff, for example cyber security if you wanna be secure you have to know it. It also has a lot of other uses.
guys look at my program (Please do not laugh at me if I made a mistake):
#include <iostream>
#include <string>
using namespace std;
int main () {
int age
string name
cout <<"What is your name?" <<endl;
cin >>name;
cout <<"How old are you?" << endl;
cin >>age;
cout <<"Hi, "<<name<<"You are"<< age << "years old" << endl;
return 0;
}