Fixed bug in C preprocessor: buffer size reduced to avoid allocation failure. Added option -v for smlrc. New example stdarg.c: a demo of function with variable arguments.
8 lines
83 B
C
8 lines
83 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
printf ("Hello, C World!\n");
|
|
return 0;
|
|
}
|