|
-
Oct 1st, 2005, 03:11 AM
#1
Thread Starter
Hyperactive Member
Plain old C in .Net
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|