Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~2K People Reached
Favorite Tags
c++ x 8

6 Posted Topics

Member Avatar for babygrl83

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 …

Member Avatar for Abzero
0
495
Member Avatar for TacklesMcCaw

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 …

Member Avatar for Ancient Dragon
0
91
Member Avatar for phalaris_trip

[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 …

Member Avatar for TacklesMcCaw
0
395
Member Avatar for QuantNeeds

[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 …

Member Avatar for QuantNeeds
0
792
Member Avatar for TacklesMcCaw

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 …

Member Avatar for TacklesMcCaw
0
154
Member Avatar for Thew

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 …

Member Avatar for TacklesMcCaw
0
143

The End.