ENH: Fix problem on HP. Whay should K&R be default?

This commit is contained in:
Andy Cedilnik 2003-07-31 08:33:01 -04:00
parent 7762431bb0
commit 4b5a63d8a2
1 changed files with 2 additions and 7 deletions

View File

@ -1,12 +1,7 @@
#include <stdio.h> #include <stdio.h>
int main(int argc, char* argv[]) int main()
{ {
int cc; printf("Hello\n");
for ( cc = 1; cc < argc; cc ++ )
{
printf("%s ", argv[cc]);
}
printf("\n");
return 0; return 0;
} }