1 2 3 4 5 6 7 8
#include <stdio.h> int get_retval(void); int main(void) { printf("C seems to be working.\n"); return get_retval(); }