is there a place anywere that i can lookup wat each warning for a C++ means?(if that list isnt too big lol)
because i got a warning while compiling this:
----------------------------------------------------------------------
#include <iostream.h>
using namespace std;
int main()
{
int age;
cout<<"imma execute a program but first u have to be a certain age!\n";
cout<<"enter ur age here: ";
cin>> age;
cin.ignore();
if (age == 15) {
cout<<"GOOD choice!\n";
}
else {
cout<<"OOPS WRONG AGE!!!\n";
}
cin.get();
return 0;
int num;
cout<<"Enterith anyith #(ith lol): ";
cin>> num;
cin.ignore();
cout<<"U enteredith: "<< num<<"\n";
cin.get();
}
----------------------------------------------------------------------
im not completley done i was just practicin my newbie skill. :D im tryna fix this code so wen i do enter the right age the program wont close how?