Search:

Type: Posts; User: MacGyver

Page 1 of 20 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    15
    Views
    7,613

    Forgive me for being cynical, but I'm so doubtful...

    Forgive me for being cynical, but I'm so doubtful about the accuracy of C testing. Sometimes I wonder if the people giving tests know what they're doing.

    But yeah, 2 years is not really a long...
  2. Learn to indent. Drop the goto abuse. If you're...

    Learn to indent. Drop the goto abuse. If you're expecting getchar to produce a '\0', that certainly seems like a very weird expectation.

    I don't plan on looking at the rest of this until it...
  3. Replies
    23
    Views
    6,330

    '\0' is an int. Character literals in C are ints.

    '\0' is an int. Character literals in C are ints.
  4. Yeah, my idea is that you go read the...

    Yeah, my idea is that you go read the documentation.

    On the off chance it's the Windows function, see MSDN's entry on CreateFile. Otherwise, how are we supposed to know what the function does and...
  5. Replies
    8
    Views
    4,086

    This is his third attempt out of three posts at...

    This is his third attempt out of three posts at advertising a website.

    Spam bot or idiot? Take your pick.
  6. Replies
    2
    Views
    1,667

    Could very well be the former.

    Could very well be the former.
  7. Replies
    21
    Views
    8,004

    Sounds like the need to do these weird casts...

    Sounds like the need to do these weird casts indicates a poor design in general.
  8. Replies
    7
    Views
    1,410

    Although "stack" and "heap" are implementation...

    Although "stack" and "heap" are implementation concepts and not C concepts.
  9. Replies
    13
    Views
    3,897

    With such vivid descriptions of your problem, it...

    With such vivid descriptions of your problem, it must be our fault. :rolleyes:

    If you want help with the exact details of your IDE, you have to give us more to work on about what you are doing or...
  10. Replies
    3
    Views
    2,012

    Well, first of all, if the book is teaching you...

    Well, first of all, if the book is teaching you C++, you should probably have put this in the C++ section.

    Secondly, if this book is teaching goto for this kind of assignment, it's likely this...
  11. Replies
    13
    Views
    3,897

    Exactly what I previously said. Check to make...

    Exactly what I previously said. Check to make sure your project is compiling and linking both .cpp files.

    This reminds me of an original Knight Rider episode where Michael asks Bonnie if KITT is...
  12. Replies
    13
    Views
    3,897

    Sounds like you're not linking both main.cpp and...

    Sounds like you're not linking both main.cpp and matriz.cpp.
  13. Replies
    13
    Views
    3,897

    Trying random things to fix an error is not the...

    Trying random things to fix an error is not the way to handle an error.

    Next time give the full error and an idea of what you're actually doing. What you told is not that helpful other than to...
  14. Replies
    3
    Views
    14,327

    Sleep() is from the Windows API.

    Sleep() is from the Windows API.
  15. Replies
    9
    Views
    3,292

    Then C or C++ is probably your best bet... but...

    Then C or C++ is probably your best bet... but we're biased.
  16. Replies
    12
    Views
    2,712

    You should be waterboarded for not properly using...

    You should be waterboarded for not properly using code tags.
  17. Replies
    9
    Views
    3,292

    Would be better in the project section of the...

    Would be better in the project section of the forums.

    Since you mentioned python twice, I'm assuming you really want python badly. This isn't quite the place to ask about, as you'll probably find...
  18. Isn't that the same thing?

    Isn't that the same thing?
  19. Replies
    2
    Views
    7,611

    Uh, if it's a DOS program, why are you including...

    Uh, if it's a DOS program, why are you including Windows.h? The black box of fun that comes with Windows XP isn't really DOS... ;)

    You might want to make sure you understand what you're...
  20. Replies
    4
    Views
    6,680

    Compiling as C90: : In function `main':...

    Compiling as C90:


    : In function `main':
    :24: warning: ISO C90 forbids mixed declarations and code
    :28: warning: int format, pointer arg (arg 2)
    :30: warning: int format, Position arg (arg 2)...
  21. Replies
    4
    Views
    3,024

    Considering you pretty much ignored the fact this...

    Considering you pretty much ignored the fact this is a C forum and your question is about parallel ports and not C, I'll ignore your statement that you googled.

    So with that said, find the...
  22. Thread: Eureka show

    by MacGyver
    Replies
    12
    Views
    77,360

    I knew your original meaning, but I had to get...

    I knew your original meaning, but I had to get that joke in there. ;)

    My understanding, based on the explanation that they gave and the way other people have spoken about this subject, is that...
  23. Replies
    2
    Views
    8,819

    On a side note... First line could lead to...

    On a side note...



    First line could lead to seg faults, as it's an unsafe way of reading a string. You know how fgets works, so why are you using scanf() here?

    Second line is not valid in...
  24. Thread: Eureka show

    by MacGyver
    Replies
    12
    Views
    77,360

    Well, people would be bitter because they lack...

    Well, people would be bitter because they lack the access that you have to the videos. :p

    On a more serious note, Hulu's website has this to say about why they block support for other countries:...
  25. Replies
    9
    Views
    4,552

    I told you how to do it right. Do it the...

    I told you how to do it right. Do it the OS-specific way. valaris was kind enough to point out some Windows functions.



    No, I said it because it's the truth. The proper way of messing with a...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4