Wow, guys. That is embarrassing... thank you for all of your help. I've got gcc and have attempted to use it - it still seems like it's having an issue finding iostream. This is the output from gcc:
hello-world.c:1:20: error: iostream: No such file or directory
hello-world.c:3: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘namespace’
hello-world.c: In function ‘main’:
hello-world.c:6: error: ‘cout’ undeclared (first use in this function)
hello-world.c:6: error: (Each undeclared identifier is reported only once
hello-world.c:6: error: for each function it appears in.)
//#include <iostream.h> // NOT this!
#include <iostream> // Use this
usingnamespace std;
int main() {
cout << "Hello, world!";
cout << "I'm a C++ program";
return 0;
}