B
BigDaddyCool
I know that Visual C++ can compile C code. How do I do this? For example,
here is a hello world program in c:
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
return 0;
}
How do I get this program to compile and run in Visual C++ 2005 Express
Edition? Please note that I am a bit of a newbie to programming, so please be
thorough with the instructions.
here is a hello world program in c:
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
return 0;
}
How do I get this program to compile and run in Visual C++ 2005 Express
Edition? Please note that I am a bit of a newbie to programming, so please be
thorough with the instructions.