Monday, January 27, 2014

Class January 27, 2014

Today I learned that the most important part of the source code is:

The program begins with the following lines:
 
#include <iostream>
using namespace std;
int main 
{

The program ends with the following two lines:

return 0;
}

** Without these lines there wouldn't be a program.** 

No comments:

Post a Comment