sorry it is a noob question i installed visual c++ 2008 but i am unable to compile hello.c program i get error
hello.obj : error LNK2019: unresolved external symbol _Printf referenced in func
tion _main
hello.exe : fatal error LNK1120: 1 unresolved externals
i am compiling through command line dont know how to use ide please please help
That error usually means you aren't including the proper library files to the linker. Though I thought MSVC did this by default for the C and C++ core libraries. Not really what to say to fix it because I never used '08 but rather used 2010.
For Windows I would have to say Code::Blocks ( http://www.codeblocks.org/ ). Other than that I really don't know of any other ones. Now Code::Blocks is an IDE that uses the MinG compiler (which if I remember right is a Windows implementation of the GNU C/C++ compilers and tools).
I tried code::blocks but as a starter I find it hard to use (that could just be me, idk) so I now use Microsoft Visual Studio 2012 Express. It's a free-to-use program (after 30 days you have to create an account or login with a Microsoft account to keep it though).