Sorry about posting this here, couldn't find anywhere more appropriate.

I'm just getting familiar with .net and c#, but now I want to create, compile and run a simple C program from the .Net IDE.

I have created a Win32 Empty App and have entered the test code:

#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}

... and built it fine, but it does not create the .exe for me to run it.

Can anyone offer some help with this? Or better still, point me to a site that actually shows you have to build a C project from .Net IDE, I'm fumbling my way through it at the minute.

Thanks in advance.