C in Visual Studio

Status
Not open for further replies.

QwertyManiac

Commander in Chief
Create a simple new source file or do so the project way and write down your code. Then use the Build menu to build/compile and run it. Its simple, you can get it if you try to.
 
^+1, its the same as u do in Turbo C,
But I guess u can't use pointers if u wish to make it compliant with CLS.
 

Jove

Right off the assembly line
dude...VS 2005 ships with VC++ compiler...I guess all C programs can be compiled and run with C++ compilers also...I am doing the same all these days...So i guess simply creating a win32 console application suffices to continue with our work.
cheers :)
 

dheeraj_kumar

Legen-wait for it-dary!
Traditional C programs != Win32 console app.

@topic starter
As said by QwertyManiac, Open a blank source file in VS, and type the code, and compile

@Jove
a Win32 application is a windows application, not a dos c program.
c = main()
win32 = bool apientry winmain(hinstance hinstance, blah blah)
 
Status
Not open for further replies.
Top Bottom