// file: /data/courses/ece_1111/current/lectures/lecture_10/example.cc // // Description... // // local include files // #include "example.h" // function: main // // This is a simple program that prints to the terminal. // int main(int argc, const char** argv) { // print hello world // fprintf(stdout, "program name: %s (%s)\n", argv[0], "Hello World"); // exit gracefully // return(0); }