C++ Resource Page

 

 

Codewarrior Pro 8 Introduction

              Outline of the CS lab tutorial + debugger secti on

Basic Unix/linux Commands

To know if you compile with g++

Submitt ing Homework from Windows

              How to use the drop-boxes from a networked Windows PC

 

g++ works like this (from the terminal):

 

 

mphasak@champion:~> g++ hello.cpp

mphasak@champion:~> a.out

Hello there!

mphasak@champion:~>

 

: a.out is the default name assigned to your output file

 

 

mphasak@champion:~> g++ hello.cpp -o hello

mphasak@champion:~> hello

Hello there!

mphasak@champion:~>

 

: use the Ò-oÓ flag to specify your own output-file name