C++ is one of the most common, and most important languages in use. For applications where speed is critical, C++ is often the best option. Since it is compiled in to machine language — unlike Java and .net languages which are interpreted — it runs extremely fast. C++ is often the top choice for creating video games and other graphic intensive applications.
In this first tutorial from the Learn C++ on the Mac series, Mark will review the basics of creating C++ applications on the Mac using XCode.
main.cpp:
#include <iostream> //First program in C++ for Mac course int main() /* Main written by Mark Lassoff LearnToProgram.tv */ { std::cout << "Hello world from LearnToProgram.tv"<<std::endl; std::cout << "I am glad you are learning C++"; return 0; }


