- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: Hi. ReactOS is supposed that the OS will run windows software, some say that has the maturity of an XP, but I really haven't try it, and as far as I know, it is not recommended to use it daily. I recommend you to go to the ReactOS forum, maybe … | |
Re: As far as I understand your code (sorry, still learning C++), the problem is that you use a string, instead of an array of chars, and when you pass it to the tree, you pass it as a string, instead of a char ... | |
Re: ANN are not easy, but why you don't start your own project? just for the fun of learning. :) | |
Re: WoW ... Why you don't go to the opencv forums? maybe you can find something useful in there. | |
| |
Re: Interesting .. I'll give you a tip, you need to define your rules. Bonus tip, use bayes ... | |
Re: You can start learning with a code like this ... [Click Here](http://www.hitmill.com/programming/cpp/helloWorld.htm) And you need to read the tutorials and books that are in internet sites. Have fun coding :) | |
| |
Re: #include<effort> #include<code> int main() { cout<<"Make an effort and post your code"; } Greetings | |
Re: Hmmm ... why don't you explain what the problem is on each program? | |
Re: Have you tried some code? Hardly someone will help you if you don't show the code you are trying to do. | |
Re: If programming is your life, then you master all programming languages? o.O | |
Re: Have you tried it? if there is no code hardly someone in here could help. | |
Re: You just have to put cout << "Enter 1 to checkout or 0 to end checkout."; cin >> userChoice; Inside the first do while | |
Re: I'm a noob in C++, but as fast I can see that "storage" is not declared in function void (line 20). | |
Re: I will suggest that please try reading a C++ book, I think there is something similar in books. | |
Re: I'll give you a tip, i'm also a noob, and i'm learning by myself grabbing and reading books, the community in here is nice, they helped me a lot, the thing i learned is, that you first need to read books or google tutorials, write your code and try and … | |
Hi. I'm learning C++ by myself, so I'm a noob, also i'm a mad scientist :P I'm trying to use a doubly linked list with polymorphism, and got a problem. Here is my code: #include <iostream> #include<string> #include<cstdlib> #include<cstring> #include<sstream> using namespace std; // node class template<typename T> class nodeType … | |
Hi. I'm trying to implement a stack in C++, but i got stuck Here's my code #include<iostream> #include<cassert> #include<cstdlib> using namespace std; template<class Type> class stackTDA { public: virtual void initializeStack() = 0; virtual bool isEmptyStack() = 0; virtual bool isFullStack() = 0; virtual void push(const Type& newItem) = 0; … | |
Hi. I'm learning by myself data structures with c++ but i got stuck Here's my code: #include<iostream> #include<cstring> #include<string> #include<sstream> using namespace std; template<class T> // node class class nodeType { public: nodeType(); nodeType(T); ~nodeType(); nodeType *next; nodeType *previous; T data; //string getkey(); string Id; //void borra_todo(); void imprime(); // … |