
please wait
by JayRyGeo
Why isn't this printing anything?
|
I'm trying to make a array that will auto fill with random numbers when the user tells the program how many numbers are to be in the array. I don't see any iss... |
May 18, 2013 at 1:43am
[4 replies] Last: @Andy The exception handling was designed to be an example not a... (by guatemala007)
|
by Rougeace4
How to use a switch statement with int variable
|
So, I've just figured out about switch statements. I am having problems on lines 14, 17. (no ERRORS, just how to execute) I know, to use a case with a char ... |
May 18, 2013 at 1:41am
[10 replies] Last: http://www.cplusplus.com/doc/tutorial/control/ Last section on this p... (by agnophilo)
|
by JayRyGeo
Reading and writing to text files.
|
I have this bit of code that will write two randomly generated vectors to two files: #include <iostream> #include <string> #include <fstream> #include <s... |
May 18, 2013 at 12:21am
[5 replies] Last: but how does the in file know that n is the size? It doesn't "know".... (by Chervil)
|
by daft science
Creating a tally counter using Classes
|
So my instructions are to implement a class that models a tally counter. Whenever the operator pushes a button, the counter value advances by one. Model this op... |
May 17, 2013 at 11:58pm
[5 replies] Last: That's perfect. Thanks so much :) (by daft science)
|
by science
roulette
|
i have home work to do a simple roulette. here is the code i got i know its stuff misplaced but i do it that way for some reasona nd i have extra things added ,... |
May 17, 2013 at 11:54pm
[7 replies] Last: Because n and t are outside of loop just do start += bet for them inst... (by giblit)
|
by sqdejan
A game update
|
Wrote about a game in here a few days ago. A game that should introduce programming in a new way. I have just updated the game a bit and moved it to a new serve... |
May 17, 2013 at 11:44pm
[no replies]
|
by uzferry
visual c++
|
Hello, I'm new to Visual C++. I'm trying to make a simple program which calculates the amount of letters in the word, so as I understand I need to find out the ... |
May 17, 2013 at 11:35pm
[3 replies] Last: String ^ i; is not a C++ construction. It is a CLR construction that i... (by vlad from moscow)
|
by acemanhattan
Program has (at least) two bugs in it.
|
Full disclosure: This is a homework assignment I have written code that checks to see if a string is a palindrome. In order to do this I've created two functi... |
May 17, 2013 at 11:27pm
[7 replies] Last: @acemanhattan I am saying that the function checks if they are lower o... (by giblit)
|
by ace55
How incorporate this second method?
|
So i did the task of writing a code for an accumulator as seen here. Now i have to use a second method and am confused with how i exactly do it. How do i use th... |
May 17, 2013 at 9:38pm
[no replies]
|
by pnelego
weird exiting error
|
when i execute this program about halfway through the program simply exits how do i fix this? #include "stdafx.h" #include<iostream> #include<string> ... |
May 17, 2013 at 9:28pm
[1 reply] : Try replacing cin.get(); by std::cin.clear(); std::cin.ignore(100... (by Vidminas)
|
by Samuel Bass
My code gives me a long small number.
|
My code gives me a long small number in "Program 5" Then "Program 6" messes up and does not even run properly. This is just to practice but I cant get Program ... |
May 17, 2013 at 9:05pm
[7 replies] Last: Know I can see what goes on. Thank you I appreciated! (by Samuel Bass)
|
by spofix
C++ Beginner!
|
Hello! I'am a nice guy from sweden and wanna learn c++. I don't know anything in c++ and i think i need some help, i wan't to serious, don't tell me to st... |
May 17, 2013 at 8:53pm
[4 replies] Last: Hei spotfix, hvordan har du det? Like they said this website has some ... (by Austin J)
|
displaying a 2d array of char '*' |
im trying to display my array of type char on a screen, but its not working. i have my world class: const int ROWS = 22; const int COLUMNS = 75; cla... |
May 17, 2013 at 8:06pm
[no replies]
|
by Stauricus
math combinations
|
hello i'm trying to make combinations. i have a bool array, and want to output all the possible combinations from it. i want an output like: true; false; f... |
May 17, 2013 at 7:23pm
[11 replies] Last: Recursive: #include <iostream> #include <vector> #include <iomanip> ... (by JLBorges)
|
by INeedAHero
The fabric of reality is breaking down
|
Look at this. I have a function that determines the number of characters in a mathematical expression. So, 4+(9-2) would return 7 Now, when I put one ex... |
May 17, 2013 at 7:19pm
[2 replies] Last: Thanks for the reply. I said 7 because there are 7 characters in that... (by INeedAHero)
|
by Mavrec
Minesweeper game project.
|
Hello, I have just joined this community, wanting to be better in programming using c++. I'm so amazed by this site, as it helped me before..even expecting mor... |
May 17, 2013 at 6:30pm
[1 reply] : void player() { cout << "Commands: R => Show, F =>Flag, C =>Ch... (by Mavrec)
|
by bubblesbubby
Make the pointer look like its pointing to desired address
|
hi, First let me post a code here to make my question clear. #include <iostream> using namespace std; int main() { unsigned int *ptr; int val = 150; ... |
May 17, 2013 at 6:11pm
[3 replies] Last: ok... Thanks.... (by bubblesbubby)
|
by lmsmi1
Anti-Debug & Anti-RE Techniques?
|
I'm interested in anti-debug and anti-reverse engineering methods, and can't seem to find any good examples that I can use. UPX is stupid since you can de-UPX a... |
May 17, 2013 at 5:46pm
[1 reply] : A good place to start would be www.tuts4you.com You must know how peop... (by mausy131)
|
check out this error... |
I am trying to pass a 2D array of char to a function in my class. this is the class: class World { private: char world_array ; bool out_of_bou... |
May 17, 2013 at 5:22pm
[3 replies] Last: thanks a ton i totally understand why now. (by spiritedDedication)
|
by sakonpure6
Function not being called?
|
Hi, for some reason my program wont call my Basic_Requirements function, all it does is quit after the first function call. Why? #include <iostream> #in... |
May 17, 2013 at 5:20pm
[3 replies] Last: I am guessing it is your conditions. Group the related conditions toge... (by Daleth)
|