#include #include // Yes, printf still works in C++. // No, you should not normally use it in ordinary C++ code. int main(int argc, char **argv) { printf("hello from C\n"); return EXIT_SUCCESS; }