Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for batchprogram

I'm doing some homework for a computer systems class and all is well except this one problem that I can't seem to find a solution to due to the limitations. The problem requires me to write a function that performs addition on 32-bit signed integers but saturates the result to …

Member Avatar for rubberman
0
2K
Member Avatar for batchprogram

I recently made a switch to SDL as a cross platform alternative to directly accessing DirectX or OpenGL. In an attempt to port a section of my game framework, I encounter logic errors that (to me) make absolutely no sense. In this snippet, a sprite is simply a wrapper class …

Member Avatar for venomxxl
0
216
Member Avatar for Dinglish

Arrays are structures of information that can be accessed by index. Declaring an array; [CODE] int numbers[10]; [/CODE] This declares an int array with 10 indices. They have not been assigned values yet, so it's necessary to access one index and assign a value; [CODE] numbers[0] = 1; [/CODE] This …

Member Avatar for caut_baia
0
112
Member Avatar for empror9

empror9, You really should consider reading about psuedocode, practicing writing simple programs. When trying to write code, you should know how to convert said code into english to some extent. Let's analyze some code and convert it into english. [CODE] #include <iostream.h> int main(){ cout << "This is text displayed …

Member Avatar for batchprogram
0
128
Member Avatar for Expora

Think of your entire program as a blueprint. The blueprint describes what and when something is suppose to happen. Functions are a way to extend the functionality(behavior) of your program. You could think of them as the extra pages on a blueprint. Every function in modern programming languages has this …

Member Avatar for batchprogram
0
145
Member Avatar for batchprogram

I'm an experienced programmer of 5 years in Java & C#, but recently I decided to program in C++ as well. I'm familiar with proper code syntax and advanced programming techniques, but this compiler error i'm getting just stumps me beyond recognition, I've analyzed my code for syntax errors a …

Member Avatar for EddieBre
0
218

The End.