// Don't need iostream anymore since we're not using cout // but we do need to include stdio.h to make printf() available #include int main() { // Write "hello, world" to the screen printf("Hello, world!\n"); return(0); }