
please wait
by MJGilbert
Why is this number in my array?
|
#include <iostream> // Self explainatory prototypes void loadDeck(unsigned short card , const unsigned int DECKSIZE); void dispDeck(unsigned short card ... |
Jun 30, 2015 at 11:23pm
[4 replies] Last: Ooooh, awesome. Thanks a ton! (by MJGilbert)
|
Pathfinder |
Hello, I've been working on some project. I would like to create a simple pathfinder. I use binary tile map. Diagonal movements aren't allowed, step cost is alw... |
Jun 30, 2015 at 6:39pm
[4 replies] Last: Edit: OK. I fixed it. It works great now. Thanks a lot. Here is full ... (by rotatingproton)
|
by shadowmouse
entry point not found
|
I've made a project with codeblocks using MinGW 5.1.0 and everything compiles fine and without errors or warnings and it runs fine when I run it from within cod... |
Jun 30, 2015 at 11:33am
[3 replies] Last: It appears to be working now, but I don't know why. Might be because I... (by shadowmouse)
|
Base and derived classes and more |
I can't understand these sentences completely. Could anyone explain thses to me please? A base can be private, protected, or public. - If a base of class D... |
Jun 30, 2015 at 8:44am
[5 replies] Last: Thank you all very much. (by closed account G1vDizwU)
|
by zan nabil
In CodeBlocks,how do I run a certain program if multiple project files are open?
|
When i have multiples files (not project files) opened in the view window,if i click on a file and open it and then if i click run, that program builds and runs... |
Jun 30, 2015 at 8:14am
[2 replies] Last: Wow!Didn't see that. Thanks a lot :-) (by zan nabil)
|
by DCowboys1
Using Floor and Ceil in a do while loop and for loop
|
I need help writing this program can any one help. This what was given as an example. I got the for loop going but i'm not sure about the function floor and ... |
Jun 30, 2015 at 8:04am
[1 reply] : Welcome to the forum. Please edit your post and use the code format t... (by kbw)
|
by bkharoud
Make array of ints from numbers in txt file.
|
I have a text file like this: 1, 3, 6, 6, 5, 1, 6, 8, 4, 6, 6, 7 I wanted C++ to read the file and put the numbers into an array of integers. The amount of n... |
Jun 30, 2015 at 4:29am
[1 reply] : Scan for the number of commas, add 1, create an array that big, read i... (by closed account NUj6URfi)
|
by jj09786
Class initializer problem
|
Hello Everybody . I'm new to the C++ community and environment too. Anyway , I was trying to code a tiny portion of a RPG game in console and the problem come... |
Jun 29, 2015 at 9:30pm
[2 replies] Last: Yeah, I use Codeblock and main.cpp , Character.cpp and Character.h are... (by jj09786)
|
by BarelyOtaku
Reverse Root Timus
|
I'm solving a problem that I've almost completed but I'm stuck with two errors where my knowledge of C++ is limiting me from debugging the code. So far I have.... |
Jun 29, 2015 at 8:27pm
[5 replies] Last: Thank you very much! I need to look over my data declarations. (by BarelyOtaku)
|
by JustCurious
Displaying certain characters
|
Hey so, I wanted to display and intro for one of my programs, but it my compiler isn't displaying it how I want it to. I want something like this: _... |
Jun 29, 2015 at 5:31pm
[5 replies] Last: Try this #include <iostream> using namespace std; int main () { ... (by Chriscpp)
|
by avinsnarayan
program c++
|
In the sugar town of friendly north, a cane harvesting festival is held every 6th year.These celebrations began in the year 1980. Given a future period- defined... |
Jun 29, 2015 at 5:23pm
[8 replies] Last: [quote=MikeyBoy]Or are you spamming for private tutorial work? @Mikey... (by Tresky)
|
by HalfNOoB
Tile Maps: Teleportation/Doors
|
Hi guys I've done a few Posts here and now I have another question ^^ So: I'm saving my .map files in the asset/maps/ Folder. The .map file contains a lot... |
Jun 29, 2015 at 4:37pm
[3 replies] Last: Your map file will need to become more sophisticated. I think the sa... (by HalfNOoB)
|
If I don't want my object copyable... |
All I have to do is declare the overloaded assignment operator, and copy constructor, as private, correct? There are NO other ways in which my object could be c... |
Jun 29, 2015 at 3:33pm
[2 replies] Last: By default, a class has 5 operations: copy assignment copy construct... (by JLBorges)
|
by Durpo
Reading from file - Using While Loop
|
I am having trouble with the following code. I need it to end when it reaches -1 however it reads that row and then ends. Does it have something to do with my s... |
Jun 29, 2015 at 2:53pm
[3 replies] Last: Glad to hear you fixed it. In the future, please refrain from posting ... (by Tresky)
|
by ataik
running c++ console application without Visual Studio
|
Hello, i wrote a c++ console application for a person but i need to send him an application for working independent of Visual Studio. How can i do this? T... |
Jun 29, 2015 at 12:38pm
[2 replies] Last: You should make sure you send the release build. You might also want ... (by andywestken)
|
by jeetu410
Template Problems
|
For an assignment I have to write some code in only a header file to get practice with templates. Although I think I was able to get most of the coding correct ... |
Jun 29, 2015 at 12:35pm
[9 replies] Last: thank you! (by jeetu410)
|
by Wynn
Dynamic Memory Issue
|
So i've just gotten around to researching dynamic memory allocation and it could be that its 4am but im confused. http://pastebin.com/gC7hQeuF In the func... |
Jun 29, 2015 at 4:54am
[2 replies] Last: Yep i should get some sleep :D. Thank you. (by Wynn)
|
by alex067
Continuous vs Random Storage
|
What is the difference between these two? I'm trying to look up for it online but there are no clear definitions |
Jun 29, 2015 at 3:07am
[1 reply] : Do you mean sequential vs random access? A sequential device can only... (by helios)
|
by fauzi123
memory acses violation
|
i'm new to pointer in c++ , can someone help me solve this class student{ public: int id; student(int id){ this->id= id; } void somefunction(student* stud,int... |
Jun 29, 2015 at 12:45am
[3 replies] Last: No you haven't, that doesn't change the value of jacob . (by kbw)
|
by MidnightX
OS Coding help
|
I'm Developing an OS. I know it very hard to write a OS and takes a lot of work but I would like to develop my very own OS. How do I write a code that can run a... |
Jun 29, 2015 at 12:42am
[1 reply] : you need to implement a way to parse executable files like elf or coff... (by heepoo)
|