Learning is process in my book. Don't think that I can write my own stuff yet - learning all the variables and syntax is complicated. Got a feeling that I'm going to need to go through all this stuff a few times to be able to remember the important ones. Perhaps pick a project to start on to find out what ones I'm actually going to be using in the real world situations.
int x;
cout << "Type a number: ";
cin >> x;
cout << "Your number is: " << x;
One thing that I have liked the look of is the user input stuff, using the terminal to have the user put something in and it read it back. Pretty cool stuff. Perhaps a good first project would be to create a signup registration programme?
Onwards and upwards.
Comments