Thread: Is Visual Studio really good ?

  1. #1
    Registered User MartinR's Avatar
    Join Date
    Dec 2013
    Posts
    200

    Is Visual Studio really good ?

    Hello, yesterday I have occasion to play a little with visual studio and it wasn't nice experience .
    First of all there is no option to create C project only C++, predefined C/C++ sytax is more microsoft C than standard C I would say. Even simple task like compile c code aren't obvious, and for me this program isn't easy to use. I use dev-c and it is much more simpler. At first glance it looks like VS provide nice debugger.

    Could you please say what is the adventages of using Visual studio and is it worth to use it ?

    Onec again in dev-c everything is more obvious and much more simpler. Dev C weight aprox 60 Mb minwhile VS 9 GB.

  2. #2
    Registered User
    Join Date
    May 2009
    Posts
    4,183
    If doing only C and NOT c++; the past suggest was try Pelles C for Windows Pelles C - Home.

    Note: I have NOT really tried it; but, I feel I have to recommend it since, commontater is no longer on this board.

    Tim S.
    "...a computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people with the ability to do incredibly stupid things. They are,in short, a perfect match.." Bill Bryson

  3. #3
    [](){}(); manasij7479's Avatar
    Join Date
    Feb 2011
    Location
    *nullptr
    Posts
    2,657
    I don't think 'Pelles C' usage is very intuitive either.
    I suggested it to a newbie and he could not figure out what to do with it.
    Neither could I..(over the phone).

    Same person had no problems with codeblocks.

  4. #4
    Registered User
    Join Date
    Dec 2013
    Posts
    241
    I agree that visual studio is not intended for pure C, it's a heavy tool for C++ and not much of a bonus for regular old C.
    I use codeblock and dev-c++ and they're great because they're simple, although dev-c++ makes a lot of trouble when trying to add costume libraries from the outside.

  5. #5
    Registered User
    Join Date
    Apr 2013
    Posts
    1,658
    I've created a lot of console programs in C using Visual Studio. When creating a project, click on next, clear the check box(es) under empty project, then set the empty project check box. After this, then go to project, then add existing item to include your C source file.

  6. #6
    Registered User MartinR's Avatar
    Join Date
    Dec 2013
    Posts
    200
    not to mention there is no Save as option o.0 VS has nice feature of project cotrol and debugging but is it worh the price ?


    PS: VS has a problem including simple <stdio.h>

    Warning 1 warning C4627: '#include <stdlib.h>': skipped when looking for precompiled header use documents\visual studio 2013\projects\consoleapplication7\consoleapplicati on7\consoleapplication7.cpp 216 1 ConsoleApplication7
    Last edited by MartinR; 03-30-2014 at 02:15 PM.

  7. #7
    Registered User
    Join Date
    Mar 2012
    Location
    the c - side
    Posts
    373
    Quote Originally Posted by stahta01 View Post
    If doing only C and NOT c++; the past suggest was try Pelles C for Windows Pelles C - Home.

    Note: I have NOT really tried it; but, I feel I have to recommend it since, commontater is no longer on this board.

    Tim S.
    Over the last couple of days I've been using Pelles C after using codeblocks and found it a pretty similar experience. Plus it allows a choice between 32 bit and 64 bit and the c99 or c11 standards. Haven't used it for large projects yet but liking it so far.

  8. #8
    TEIAM - problem solved
    Join Date
    Apr 2012
    Location
    Melbourne Australia
    Posts
    1,907
    This site recommends Code::Blocks and I use that for C - I only use Visual Studio for Visual C#.

    Setting up Code::Blocks and MINGW, A Free C and C++ Compiler, on Windows - Cprogramming.com
    Fact - Beethoven wrote his first symphony in C

  9. #9
    Registered User
    Join Date
    Apr 2013
    Posts
    1,658
    Quote Originally Posted by MartinR View Post
    not to mention there is no Save as option o.0 VS has nice feature of project cotrol and debugging but is it worh the price ?

    PS: VS has a problem including simple <stdio.h>

    Warning 1 warning C4627: '#include <stdlib.h>': skipped when looking for precompiled header use documents\visual studio 2013\projects\consoleapplication7\consoleapplicati on7\consoleapplication7.cpp 216 1 ConsoleApplication7
    Visual Studio express is free. The error you're getting seems related to precompiled headers, which can be avoided by choosing "empty project" when creating a project (I explained how to do this in my previous post).

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Visual C++ and Visual Studio 2010
    By 03jh01 in forum C++ Programming
    Replies: 5
    Last Post: 10-03-2010, 04:03 AM
  2. Good guides, tutorials, links.. for Micr.Visual (Studio) C++ 2005 !!
    By mynickmynick in forum Windows Programming
    Replies: 4
    Last Post: 08-11-2008, 09:17 AM
  3. visual studio 6 and visual studio.net difference
    By gemini_shooter in forum Tech Board
    Replies: 5
    Last Post: 02-04-2006, 01:32 AM
  4. Replies: 1
    Last Post: 05-26-2004, 09:59 AM
  5. Looking for good Visual Studio .NET books
    By gicio in forum C# Programming
    Replies: 1
    Last Post: 12-29-2002, 12:35 PM