Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 22

11 Posted Topics

Member Avatar for people123

Hello, I have recently installed Microsoft Visual C++ 2005 Express Edition, and right off the bat when trying to make a new project I find myself unable to make a Win32 Windows Application, when I go to check the bullet that says "Windows Application", the option is grayed out. I …

Member Avatar for ismetteren
0
132
Member Avatar for toko

You should use inline functions when declaring them in the class itself, you can do this by simply typing [inlinecode]void SetAge (int age) [b] { return itsAge = age } [/b] [/inlinecode] so you wouldnt need to use the scope operator later with the [inlinecode]int Cat::[/inlinecode] in front of the …

Member Avatar for Max_Payne
0
105
Member Avatar for people123

I came to a point in my C++ book where I have to start using bitwise operators, such as &, ^, and |. I have a hard time grasping the concept of exactly how do I manipulate bits, the following example supposedly "turns off the 6th bit", therefore inverting the …

Member Avatar for people123
0
139
Member Avatar for weewee
Member Avatar for people123
0
970
Member Avatar for people123

Here is my code, it is suppose to take the double num, round it, and return it using call by reference, but when i try to compile it gives me an ambiguity error at [inlinecode]round(i);[/inlinecode]. please help. [CODE=c++]#include <iostream> #include <cmath> using namespace std; void round(double &num); int main() { …

Member Avatar for people123
0
109
Member Avatar for dsuh06

in a normal loop you would have [inlinecode] for( i = 0; i < n; i++)[/inlinecode] but in your code the semicolon simply states that it doesnt matter what the first section([inlinecode] i = 0[/inlinecode]) is. [edit] What AD said. lol.

Member Avatar for Ancient Dragon
0
107
Member Avatar for enuff4life

[URL="http://www.cplusplus.com/doc/tutorial/introduction.html"]Welcome to C++[/URL]

Member Avatar for WaltP
0
144
Member Avatar for people123

So I am learning arrays, and i was given a piece of code in my book here which basically finds the average, min, and max value of a set of numbers, but the thing i don't understand is, when you are finding out the min and the max why you …

Member Avatar for helixkod
0
94
Member Avatar for people123

So after a day or two of trying i finally found out how to do this, my question is, is there any way to do this that is more efficient without using the prime function? [code]#include <iostream> using namespace std; int main() { std::string line; int i, p, x; for(i …

Member Avatar for WaltP
0
147
Member Avatar for people123

Hi, I am new to C++ and I joined this forum with hopes of learning as much as i possibly can about the language. This seems like a nice place with a mature community. I bought a C++ book and I'm just now learning the basics such as goto, for, …

Member Avatar for tracethepath
0
118
Member Avatar for MedianHansen

I'm using this for Vista, works fine. [url]http://www.bloodshed.net/[/url]

Member Avatar for people123
0
322

The End.