摘要:
分享一个网上来的代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 void print() 5 { 6 #pragma comment(linker, "/ENTRY:print") 7 printf("hello, world\n"); 8 } 9 10 int main(int argc, char *argv[])11 {12 }把入口点函数设为了print函数,不进入main函数了。 阅读全文
posted @ 2012-12-25 22:11
wnarutou
阅读(287)
评论(1)
推荐(0)