- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
I am an avid computer enthusiast, specializing in Web Development and Systems Administration. I work with PHP, Java, C++, and SQL. I am currently seeking my Bachelors in Information Systems, focusing on Security Administration. After graduation (August…
- Interests
- Programming, Reading (Leisurely), Camping, Fishing, Drinking (Beer, mostly), Traveling, Beach, Mountains,…
- PC Specs
- MacBook Pro (4,1) and OS X 10.6.4Ubuntu LinuxWindows XP
9 Posted Topics
Re: This sounds like a good example of using recursion to achieve what you want. Basically, using a function to determine if its argument is greater than 9, and if so add the separate digits and call the function again until the input is 9 or less, than then multiply that … | |
Re: On line 16, you can remove the dereference operator and your code will work as you expect it to. Remember that the dereference operator in effect treats your pointer as the actual object. Conversely, if you wanted to use the dereference operator, change the '->' to a period (.). For … | |
Re: In very basic terms, a managed make project frees you from having to work directly with the makefiles needed to build your project. Conversely, a standard make project requires that you build, and maintain, the makefile for your project. Using Google will surely give you better details and specifics about … | |
Re: [QUOTE=zebra59;324120]I have this problem that I can't figure out, I can't figure out the line statement that needs to go in. Here's the problem [code=c] struct NodeType { int data; NodeType* link; }; NodeType* p; NodeType* q; p = new NodeType; p->data = 18; q = new NodeType; q->data = … | |
Re: The not operator goes to the front. But in your case, I would suggest not using the not operator at all, and instead use the < operator. The reason for this is because the less than comparison is the opposite of >=; just like <= is the opposite of >. … | |
Re: After removing the include for stdafx.h, it worked beautifully for me (for low number of lines) on Mac OS X. :) | |
Re: I know that you marked this as solved, but maybe you can check out the already available pow() function: [url]http://www.cplusplus.com/reference/clibrary/cmath/pow/[/url] | |
Re: [QUOTE=Hawkpath;1254790]Okay, I would like to learn system APIs. What do I do? Google "System APIs"? :P[/QUOTE] As was mentioned above, there is a GUI library called QT, and an overall library called Boost. Also, you can look into learning the Standard Template Library (referred to as STL). Edit: Also, there … | |
In a nutshell I am trying to write a program that will connect to a database, query several tables for various sets of data that will then be transformed into XML that is stored into a file on the local hard disk. My first thought process to solve this problem … |
The End.