Search:

Type: Posts; User: abachler

Search: Search took 0.04 seconds.

  1. Replies
    43
    Views
    6,494

    Yeah I remember when that A+ crap started, I...

    Yeah I remember when that A+ crap started, I already had an EE and years of experience repairing computers, but I actually had a few jobs turn their noses up at an EE degree because it wasn't an A+...
  2. Replies
    43
    Views
    6,494

    Well, for RAD I prefer LabView™, but it...

    Well, for RAD I prefer LabView™, but it interfaces very nicely with C/C++, well, really any language that can create standalone DLL's. Its great for doing all the GUI stuff that I hate (doing). So...
  3. Replies
    43
    Views
    6,494

    Woot, i stand corrected... Commodore BASIC FTW!!!...

    Woot, i stand corrected... Commodore BASIC FTW!!!



    Actually I was 9. I have a picture around here somewhere of me with my VIC-20, Ill have to dig it up.
  4. Replies
    43
    Views
    6,494

    Noone will ever master every aspect of C++ or any...

    Noone will ever master every aspect of C++ or any other language for that matter. I've been programming computers for nearly 30 years, and in C/C++ for 15, and there are still areas of the language...
  5. Replies
    43
    Views
    6,494

    I agree, which is why I think java programmers...

    I agree, which is why I think java programmers who try to program in C++ should be shot, buried, then dug up and shot again to make sure.
  6. Replies
    43
    Views
    6,494

    An application written entirely with classes. ...

    An application written entirely with classes. Everything is an object, there is little to no procedural programming present. You end up with hundreds of member functions each of which executes...
  7. Replies
    43
    Views
    6,494

    In the sense that C++ isnt a language, it is a...

    In the sense that C++ isnt a language, it is a language extension of C. Much as I love it and use it. But to say don't learn C learn C++ isn't really helpful, as you need to know C to use C++. And...
  8. Replies
    43
    Views
    6,494

    int main() is int main(void) same thing in both...

    int main() is int main(void) same thing in both C and C++



    Well, its hard to overload a function without the base version of it being C

    There are limits on function overloading in C, namely...
  9. Replies
    43
    Views
    6,494

    C is an integral part of C++, you cant use C++...

    C is an integral part of C++, you cant use C++ without using some C.

    if is C
    switch is C
    struct is C
    while is C
    int main() is C
    any function call that isnt into a member function of some...
  10. Replies
    43
    Views
    6,494

    I agree, learning C is very easy, then learn the...

    I agree, learning C is very easy, then learn the C++ extensions. Although I must say that you should learn to write C that is C++ compatible from the beginning (i.e. strong typecasting). So learn C...
Results 1 to 10 of 10