/* This is conditional compilation, to take into account language differences */ /* program to print the command line arguments */ #ifdef ANSIC /* check if the ansi-C 1992 standard supported */ int main (int argc, char* argv[]) { #else /* use old style argument type declarations */ int main (argc, argv) int argc; char* argv[]; /* these come before the '{' */ { #endif int i; for (i=0; i