No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Re: Pseudocode is a language-agnostic way of writing a computer problem. Its used as the step before writing the actual code for a program (sometimes) or at least a small routine/algorithm (most of the time). It depends a lot on the person who writes the pseudocode how it is formatted and … | |
I was wondering if anyone could provide any advice on how to create and use a dynamic library using gcc on Linux and/or OS X. I've been working on an in-house image viewer application for the CS department over the summer and have been intrigued by my professor's constant exhortations … | |
Re: [QUOTE=vijayan121;628668]> compile a component [ICODE]a.cc[/ICODE] with a [ICODE]-MMD[/ICODE] switch to get [ICODE]a.d[/ICODE] which lists its dependecies. [/QUOTE] I have never heard of this switch before. Is that a gcc *nix thing or Windows or general or what? In my experience a full program trace is not worth your time, as … | |
Re: [QUOTE=QuantNeeds;628200] [code] for(numStudents > 0; numStudents -= 1;) [/code][/QUOTE] Generally it's good form to declare the variables used in the for loop, like: [code] for (numStudents; numStudents > 0; numStudents--) [/code] I don't know if the compiler considers what you've done an error, but it might, I've never actually tried … | |
Well to start let me say that I'm only a newbie, as my status says, but after a year of C++ I have what I consider a pretty good grasp over the basics of the language. I'm still at school for the summer doing an internship and have a lot … | |
![]() | Re: It depends what kind of graphics library you are using. I personally have only ever used openGL on because that is portable, but it seems like you aren't using that, or are not using a standard graphics library at all, not that I know all that much about them. One … |
The End.