C Question

i was wondering is it c99 compatible if not is there a way to convert it to c99 if so how cause i heard vsc++ is only c90 compatible and i don't want c90 only c99



Answer this question

C Question

  • MKSubb

    Take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=333319&SiteID=1

    Hope this is helpful!

    Thanks,
    Ayman Shoukry
    VC++ Team


  • Leonardo Limm

    i can't find nothing on it in the MSDN area :'(

  • ahmad.arif

    I believe you can point to any libraries or includes you want through the ide or the command line. Search msdn for adding libraries or changing the executable directory (for specifying other compiler).

    Haven't tried it though so I can't be 100% sure if it works with no problems.

    Thanks,
    Ayman Shoukry
    VC++ Team


  • Mark Shehan ABC

    yes, i know that. But is there a way i can put my own C compiler with its libraries in VSC++ and not use the ones that are in VSC++ How can I do that

  • agrodude

    how can i use a c99 compiler in the VSC++ and the includes and libraries

  • sjphere

    What feature exactly in the language you are trying to use

    Thanks,
    Ayman Shoukry
    VC++ Team


  • Testsubject

    Here is a link about adding additional libraries, you can not just add but change the whole path that points to the libraries.

    http://msdn2.microsoft.com/en-us/library/ba1z7822.aspx

    As I said, I am not sure how this works with other compiler and if that is a supported scenario or not.

    Thanks,
    Ayman Shoukry
    VC++ Team


  • bala_excel

    well basically everything that i am reading in my book.
    Sams C Primer Plus 5th Edition.

    i know that #include <stdbool.h> don't work and a few others too.

  • RodRogue

    VC++ 2005 does not contain a C99 fully conformant compiler.

    Thanks,
    Ayman Shoukry
    VC++ Team


  • C Question