今天下了个Visual studio 2005 .net, 到底怎么用它编译C啊.
比如传统的#include <stdio.h>
main ()
{
printf ("hello, world\n") ;
}
不能通过.
而非要
#include <windows.h>
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,PSTR szCmdLine, int iCmdShow)
{
MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), 0);
return 0 ;
}
才能通过, 是不是它只能编译windows的程序??