Name: Anonymous 2010-07-20 8:24
7kb of code for hello world?
C:\>type hello.c
#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}
C:\>cl /nologo /MD /Os hello.c /link /align:4096 /filealign:512 /merge:.data=.text /merge:.rdata=.text /section:.text,EWR /stub:stub64.exe /entry:main
C:\>hello
Hello world!
C:\>