views:

59

answers:

4

i have installed microsoft .net framework and visual studio 2008. give me the procedure to create c programin it........ thanks in advance

A: 

You can't.

Visual Studio does only support Visual C++ as a native compiled language, everything else is compiled against the .NET Framework (C#, VB.NET, J#, IronPython, Boo...).

Bobby
A: 

I think you should switch ide, read this one:

http://stackoverflow.com/questions/645883/good-ide-compiler-for-simple-c-dlls

Night Walker
A: 

I think you can, by selecting 'Compile as C Code (/TC)' from

Project -> Properties -> Configuration Properties -> C/C++ -> Advanced -> Compile As

but I never tried...

ducktail
+1  A: 

THANKS A LOT... i have found a way to run that in visual studio command promt.. open visual studio command promt and type notepad filename.c if the file already exists it opens that otherwise it opens the new one type the code in notepad and save compile as cl filename.c run as filename

saranyya