Posts by Rhuan Carlos • 137 points
8 posts
-
0
votes1
answer37
viewsA: Eclipse c++ Neon does not recognize Toolchain
The problem was that the GNU version I was trying to use was not supported by the eclipse
-
2
votes1
answer326
viewsQ: How do I stop a for loop that stores the values of strings typed in C++?
So I’ve tried everything I’ve tried to compare type typed a "." or set a limit value and even then the program does not continue, it stays inside the infinite loop. The code comes next:…
-
0
votes1
answer37
viewsQ: Eclipse c++ Neon does not recognize Toolchain
I am trying to install the eclipse on a computer, and it does not recognize the GCC toolchain I have changed the Path and everything but it does not appear at the time of creating a project, someone…
-
1
votes1
answer815
viewsQ: I’m having a problem with Dev C++ in displaying members of a class
To be more exact, when I press "." after some object, like I declare a vector: vector<int>Random; So far so good, so when I start typing: Random.push_back(); Dev c++ doesn’t help me complete,…
-
0
votes1
answer84
viewsA: Problem zeroing out a game score
I found the error, not problem with score but with vector. The vector q you typed in the last round is still there, which is why it hinders checking the vector items. I used a line to solve this…
-
0
votes1
answer84
viewsQ: Problem zeroing out a game score
Well, I read Bjarne’s book on programming and I’m learning programming there, I’m in chapter 5 which is about mistakes, at the end of the chapter there’s a list of exercises for me to do, I came…
-
4
votes1
answer1480
viewsQ: After all, why use C when programming in C++?
I’m learning C++ and I can’t understand why people think C knows C++? Or are the differences between the two despicable? I know the syntax is similar, but C++14 does things that C doesn’t, and aside…
-
1
votes2
answers104
viewsQ: Problems with extensive algorithm
I don’t know what to do, I think I made a mistake I don’t know. In my program the user must think of a number, and the computer must try to guess which number the user thought. The computer may ask…