CSCE 121 Chapter 1-2

From Notes
Jump to navigation Jump to search
Begin Exam 1 Content

« previous | Monday, August 30, 2010 | next »


Introduction

Honors C++ Programming language

Learn basic C++ to be able to read programming

Read material before and after class: The book is your friend!

Why C++?
C++ is very common & broad: Used EVERYWHERE!


First Program

// Library file used in book
#include "../../std_lib_facilities.h"
int main() {
  cout << "Hello World\n";
  // Required for some compilers
  keep_window_open();  
  return 0;
}