cout << "C++ Class"
C++ programming community college edumacation
My introductory class on Tuesday covered orientation and naturally concluded with all students writing an obligatory "Hello World!"-type message.
#include <iostream>
using namespace std;
int main()
{
cout << "Welcome to C++ class! !!!\n";
return 0;
}Our next class broke down the code into components. I now know that cout is C++'s print command, \n is a line break, <iostream> is a library, main() is the primary function of the program, and a bit more I won't recount here. It's fun to be in a community college course that is not a math class, especially when classroom exercises are involved, and I've wanted to learn a serious programming language (barring HTML / XHTML, CSS, and Javascript) for a while.










(But for serious, have fun!)