Posts
 
Reputation
Joined
Last Seen
Ranked #927
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
~6K People Reached
Favorite Forums
Favorite Tags
Member Avatar for tun712

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 …

Member Avatar for tun712
0
858
Member Avatar for chubbyy.putto

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 ...

Member Avatar for bernardo.mclobo
0
413
Member Avatar for Nation
Member Avatar for bernardo.mclobo
0
189
Member Avatar for Saddam_2

WoW ... Why you don't go to the opencv forums? maybe you can find something useful in there.

Member Avatar for bernardo.mclobo
0
90
Member Avatar for charmie
Re: C++

Please try and show us your code, that way someone can help.

Member Avatar for bernardo.mclobo
0
111
Member Avatar for mzee rajput

Interesting .. I'll give you a tip, you need to define your rules. Bonus tip, use bayes ...

Member Avatar for bernardo.mclobo
0
133
Member Avatar for Varad_1
Re: CPP

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 :)

Member Avatar for David W
-2
162
Member Avatar for abcdz
Member Avatar for kumanutiw

#include<effort> #include<code> int main() { cout<<"Make an effort and post your code"; } Greetings

Member Avatar for bernardo.mclobo
0
143
Member Avatar for obinaysamanoden
Member Avatar for Dondrell
Member Avatar for Shamar_1

Have you tried some code? Hardly someone will help you if you don't show the code you are trying to do.

Member Avatar for ddanbe
-1
335
Member Avatar for Shamar_1
Member Avatar for obinaysamanoden

If programming is your life, then you master all programming languages? o.O

Member Avatar for bernardo.mclobo
0
79
Member Avatar for malikbasit

Have you tried it? if there is no code hardly someone in here could help.

Member Avatar for bernardo.mclobo
-2
85
Member Avatar for Miguel_4
Member Avatar for LATCH808

You just have to put cout << "Enter 1 to checkout or 0 to end checkout."; cin >> userChoice; Inside the first do while

Member Avatar for bernardo.mclobo
0
138
Member Avatar for LATCH808

I'm a noob in C++, but as fast I can see that "storage" is not declared in function void (line 20).

Member Avatar for bernardo.mclobo
0
430
Member Avatar for faridoon.jan.7

I will suggest that please try reading a C++ book, I think there is something similar in books.

Member Avatar for Builder_1
0
117
Member Avatar for afiya abdu

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 …

Member Avatar for ddanbe
0
126
Member Avatar for bernardo.mclobo

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 …

Member Avatar for bernardo.mclobo
0
408
Member Avatar for bernardo.mclobo

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

Member Avatar for bernardo.mclobo
0
654
Member Avatar for bernardo.mclobo

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(); // …

Member Avatar for tinstaafl
0
243