// CSE 333 Su12 Lecture 9 demo: helloworld4.cc // Gribble/Perkins // The standard C libraries can be used in C++ programs, // which is particularly useful when porting C code. In // C++ code it's normally better to use the regular C++ // libraries if these do the job. #include #include int main(int argc, char **argv) { printf("hello from C\n"); return EXIT_SUCCESS; }