by Boanc
How to save / load in a RPG Game ?
|
Hey ! I'm pretty new to C++, and I want to make a RPG game and I want to implement a save / load opt... |
Apr 17, 2017 at 6:12pm
[12 replies] Last: I did it like you said with remove from <cstdio> ... It worked thanks ... (by Boanc)
|
by kinley
Compiler error while using Dll
|
Hi, I am learning how to build and use a dll. In Visual Studio 2010, I created a dll project. ... |
Apr 17, 2017 at 5:18pm
[3 replies] Last: Thank you very much. It worked. (by kinley)
|
by takaflaka
Exceptions
|
I've been working with exceptions in Object Programming for C++, and it's been easy thus far, but I'... |
Apr 17, 2017 at 4:35pm
[2 replies] Last: ...and none of those errors result in any C++ exceptions being thrown ... (by Cubbi)
|
turn string 90 degrees (1,2) |
how to turn the rows 90 degrees using a matrix ? help please !!! Input c plusplus Developer O... |
Apr 17, 2017 at 4:10pm
[25 replies] Last: Nice, a lot of different tricks in this thread. I was hung up on the... (by jonnin)
|
by MorrAndSo
New to programming
|
I just started this mini text-adventure game...... Can you help me with this? How can I make my l... |
Apr 17, 2017 at 2:38pm
[3 replies] Last: Thanks! It worked! :D (by MorrAndSo)
|
by Nomarr2
Need for homework
|
Ok I need to make a 3 part program that made with c++. The first part is to write 10 number, and the... |
Apr 17, 2017 at 2:16pm
[10 replies] Last: Well informing while looking around the internet I found some stuff th... (by Nomarr2)
|
Assignment operator overloading error (no viable overloaded operator) |
I am learning to use assignment operators. So as part of the process, I wrote a simple program as s... |
Apr 17, 2017 at 9:14am
[17 replies] Last: @JLBorges Thank you. (by avillageofbigheads)
|
by s222571
COMPOSITION
|
Hello everyone! I'm trying to write a C++ program using object composition. My problem is that I did... |
Apr 17, 2017 at 8:35am
[3 replies] Last: Why don't you try something yourself - see how you go ? (by TheIdeasMan)
|
by MisterTams
How to convert int to Month and Year?
|
Exactly as the title states, how can I do this? I have the conversion for the month down. I canno... |
Apr 17, 2017 at 7:36am
[3 replies] Last: #include <iostream> #include <ctime> #include <iomanip> int main() {... (by JLBorges)
|
by kiro0318
MySQL API error
|
Write your question here. I am compile .below C program utilizing the MySQL C API After compile,... |
Apr 17, 2017 at 7:26am
[1 reply] : You have a function res inside main, which is not allowed. Also main m... (by Thomas1965)
|
by hussain123
finding whether the word ispreviously present in file data.txt or not
|
finding whether the word is previously present in file data.txt or not? what will be function ... |
Apr 17, 2017 at 6:37am
[2 replies] Last: If you are looking for a particular word, read each word one-by-one fr... (by lastchance)
|
by Ponvo
Linked Lists, how do I implement a composed class as data for a node in an ordered linked list.
|
This is an assignment due in 6 days. The point is to make an address book to store the informatio... |
Apr 17, 2017 at 2:50am
[9 replies] Last: Awesome!! Thanks JLBorges. I have fixed the issue with the ==... (by Ponvo)
|
by ohsimplyme
How to proceed?!?!
|
I was assigned to write a program that uses parallel vectors and functions which fills each of them ... |
Apr 17, 2017 at 2:33am
[3 replies] Last: why is #include<fstream> being used if there isn't a file being read ... (by gunnerfunner)
|
by pdgaming
Minesweeper Basic Board Output
|
Hey guys, I worked on a code that was supposed to change some values in an array, but I don't know h... |
Apr 17, 2017 at 2:06am
[16 replies] Last: #include <iostream> #include <cstdlib> #include <ctime> #include <alg... (by JLBorges)
|
by Sentoo
2D Arrays
|
Hi there. I am having trouble with the function countNums. I need to make it so when the user enters... |
Apr 17, 2017 at 1:41am
[1 reply] : Declare 2 additional arrays: int rowCounter {};//array elements init... (by gunnerfunner)
|
Stacks working with Classes |
So im creating a piece of coursework using stacks, its small game that could be implemented into an ... |
Apr 17, 2017 at 1:10am
[2 replies] Last: thank you :D I did try looking through but i think i got myself a bit... (by Chronic Arrow)
|
by MisterTams
Converting int value to English translation
|
Can you guys help me? I have this program for the most part figured out. But certain numbers are giv... |
Apr 17, 2017 at 12:43am
[1 reply] : At line 39 you «Take care numbers less than a 100.». There, in your ... (by ne555)
|
by HappyS5
Reading a file of integers
|
First, thanks for your assistance. Next, I am trying to read individual integers from a file to ... |
Apr 17, 2017 at 12:07am
[6 replies] Last: Thanks. I discovered that some of the negative numbers and the symbols... (by HappyS5)
|
by ghostk91
Not declared in this scope?
|
After declaring an int variable pVelY in a class defintion, I have attempted to implement it in a so... |
Apr 16, 2017 at 11:59pm
[1 reply] : int P VelY; error: ' p VelY' was not declared in this scope Good L... (by TheIdeasMan)
|
stacks will not work |
Hi im really new to coding so sorry if this is a stupid question. I need to learn to use stacks fo... |
Apr 16, 2017 at 11:46pm
[4 replies] Last: @ fantomasAlbania Having using namespace std; is not recommended.... (by TheIdeasMan)
|