Search:

Type: Posts; User: n7yap

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    10,398

    Correct, and msvcrt.dll does not support C99. The...

    Correct, and msvcrt.dll does not support C99. The new Visual C/C++ 2005 compiler does not support C99 either, it's ridiculous.

    Note: Pelles C supports C99 and uses it's own runtime library.
  2. Replies
    10
    Views
    3,750

    Microsoft really needs to support C99 in VC. It's...

    Microsoft really needs to support C99 in VC. It's long overdue.
  3. Replies
    10
    Views
    3,750

    MinGW uses the Microsoft C Run-time library, and...

    MinGW uses the Microsoft C Run-time library, and that library does not support C99. It requires %I64 instead of %ll for printf. The GCC compiler supports C99, with the command-line switch, so it...
  4. Replies
    10
    Views
    3,750

    Using an unsigned long long requires C99 support....

    Using an unsigned long long requires C99 support. C99 is the latest C Standard. I don't use GCC, but I remembered reading that you have to turn on C99 support with a command-line switch. I found the...
  5. Replies
    10
    Views
    3,750

    -std='c99' maybe?

    -std='c99' maybe?
  6. Replies
    4
    Views
    6,428

    Bit Manipulation...

    Bit Manipulation

    You could also use 'Bit Fields', do a search.
  7. Replies
    7
    Views
    10,134

    thetinman, If your compiler supports C99, you...

    thetinman,

    If your compiler supports C99, you can use lround(), it takes a double and returns a long.
  8. Replies
    4
    Views
    1,202

    CSIDL...

    CSIDL
  9. Replies
    32
    Views
    4,810

    Sorry Prelude, it wasn't you, my mistake. :o

    Sorry Prelude, it wasn't you, my mistake. :o
  10. Replies
    32
    Views
    4,810

    quzah, I didn't post any code.

    quzah,

    I didn't post any code.
  11. Replies
    32
    Views
    4,810

    quzah, I fully support C standards, and I...

    quzah,

    I fully support C standards, and I think C99 is great. But I also don't limit myself to standard C only.

    I can see the point that when you are teaching someone C, sticking to the...
  12. Replies
    32
    Views
    4,810

    nvoigt, Thanks for the reply. I understand. ...

    nvoigt,

    Thanks for the reply. I understand.

    It's not the first time Prelude has gotten on my case for posting about something that is not standard C, so it kind of struck a nerve.
  13. Replies
    32
    Views
    4,810

    Prelude, I was not encouraging the use of...

    Prelude,

    I was not encouraging the use of fflush(stdin).

    I stand by what I said.
  14. Replies
    32
    Views
    4,810

    Prelude, I get the impression you are a...

    Prelude,

    I get the impression you are a moderator here. If the scope of this board is programming in Standard C only, then it should be stated in the rules or guidelines. If that is the case, then...
  15. Replies
    32
    Views
    4,810

    I wasn't aware that was a rule on this board. ...

    I wasn't aware that was a rule on this board.

    If conforming to 'standard C' is a requirement, then yes, it is wrong.

    Just pointing out that some compilers do support it, and that is why it is...
  16. Replies
    32
    Views
    4,810

    fflush(stdin) is not entirely wrong, it's just...

    fflush(stdin) is not entirely wrong, it's just not 'standard C'. Many compilers do support it, like MSVC. It all depends on which compiler you are using and whether you want your program to conform...
  17. Replies
    1
    Views
    1,712

    AMD Processor Recognition...

    AMD Processor Recognition
  18. Replies
    5
    Views
    18,907

    Neither does Visual C++ 2003, nor 2005. Microsoft...

    Neither does Visual C++ 2003, nor 2005. Microsoft just doesn't support C99. They are entirely focused on C++, and it seems, they could care less about C. :mad:
  19. Replies
    3
    Views
    2,044

    GetCommandLine...

    GetCommandLine
  20. Replies
    6
    Views
    21,190

    I believe 'Bios.h' is MS-DOS specific. I don't...

    I believe 'Bios.h' is MS-DOS specific. I don't think you are going to find it on newer compilers.
  21. Replies
    3
    Views
    1,073

    C code compiles just fine in Visual Studio .NET...

    C code compiles just fine in Visual Studio .NET if you do what Salem says.
  22. ninjacookies, MSVC and some others require...

    ninjacookies,

    MSVC and some others require 'I64' as follows:

    printf("elapsed: %I64u\n", end - start);
  23. Replies
    8
    Views
    1,118

    Here is a description of the problem from MSDN: ...

    Here is a description of the problem from MSDN:

    http://support.microsoft.com/default.aspx?scid=kb;en-us;324767
  24. Replies
    15
    Views
    7,046

    I tried out Visual C++ 2005 Express Edition beta....

    I tried out Visual C++ 2005 Express Edition beta. I was surprised when I got compiler warnings for using standard CRT functions. Microsoft re-wrote a bunch of CRT functions to be more secure. They...
  25. Replies
    15
    Views
    7,046

    I am using MS Visual C++ 2003. I am aware of the...

    I am using MS Visual C++ 2003. I am aware of the compiler specific functions in 'strsafe.h'. I can just imagine the response if I posted code using those functions on this board. :eek: The idea was...
Results 1 to 25 of 45
Page 1 of 2 1 2