I need big help |
Ok so pretty much i have this big project in computer programming in my highschool and have no idea ... |
May 24, 2013 at 1:18am
[2 replies] Last: the thing is that i want to use those but i have no idea how to (by austinthenoob)
|
Help with simple class definition using SFML 2.0 |
I'm trying to write a simple class that represents a missile (for a game). It uses SFML 2.0 and the ... |
May 24, 2013 at 1:12am
[4 replies] Last: Like cire said. You want to use composition instead. You can inherit f... (by Dante12129)
|
by Blank
if/ else if
|
i was reading my c++ book and i came across this problem which is a checkpoint. basically a review t... |
May 24, 2013 at 12:49am
[3 replies] Last: wow im so dumb...thank you guys. i honestly thought it outputted 11 bu... (by Blank)
|
by eraily
Lend me a hand(switch statement)
|
I having a problem to key in marks 0-9 in order to get grades F, what's wrong with my program? Hope ... |
May 24, 2013 at 12:46am
[2 replies] Last: it's working, but when I key in 0-9 marks, I cannot get output grade ... (by eraily)
|
by AlitCandle
Why can't I change individual characters in a character pointer?
|
Is there any way around this? char * c = "Hellop"; c =' '; |
May 24, 2013 at 12:30am
[1 reply] : char c = "Hellop" ; c = ' ' ; std::string s = "Hellop" ; s = ' ' ;... (by cire)
|
by Deadly Dark
program has stopped working
|
so when i go to run the program i just get a error message saying the the program has stopped workin... |
May 23, 2013 at 10:34pm
[14 replies] Last: haha umm no but yes lol im using notepad++ and i certainly will go an... (by Deadly Dark)
|
by lucratico15
Why is dangerous to run this?
|
I have an exam tomorrow and one of the question from the review is to explain it is dangerous to run... |
May 23, 2013 at 10:32pm
[2 replies] Last: Thanks (by lucratico15)
|
SDL always stops runnning |
Every time I run the below program, it always 'stops responding' in a few seconds, or if I click it.... |
May 23, 2013 at 10:23pm
[2 replies] Last: Try some of the lazy foo tutorials they are very easy to follow (by giblit)
|
by AlitCandle
How to character pointers work?
|
char * c = "Hello World" "Hello World" is not an address in memory. How does this work. *... |
May 23, 2013 at 9:14pm
[8 replies] Last: And, of course, C++11 has made this illegal (about time!) char* c = ... (by andywestken)
|
by acemanhattan
Array basics
|
Say I have an array that counts the occurrences of letters read in from a .txt file: After I've dete... |
May 23, 2013 at 8:08pm
[5 replies] Last: Oh no I thought you meant right (by giblit)
|
by acemanhattan
Shifting letters on a specific interval
|
Disclosure: This is part of a homework assignment In order to decode a message I need to shift le... |
May 23, 2013 at 7:59pm
[1 reply] : You could try something like mod (%) along with the absolute value fun... (by BigBlackSheep)
|
by Ramzi89
Basic Syntax
|
In the following code the output is: -4 4 Why is the value of n not permanently changed to -4? ... |
May 23, 2013 at 7:57pm
[4 replies] Last: Now that you mention, the pre/post increment/decrement operators do di... (by keskiverto)
|
Need Word Scramble advice |
I am very new to C++ and programming in general, I am not looking for anyone to post actual code. I... |
May 23, 2013 at 7:30pm
[3 replies] Last: Thank you for your responses. I will work on your suggestions and hop... (by Oldmarrieddude)
|
Text Data issue (1,2) |
Hi. I would like to be able to record a word in a text file and have the program see but not print t... |
May 23, 2013 at 7:14pm
[39 replies] Last: Thank you so much it is working. (by closed account NUj6URfi)
|
by Ramzi89
Basic Formattting
|
When using endl; is it the equivalent of using cout << "\n"; ? |
May 23, 2013 at 6:32pm
[1 reply] : Almost, but not quite: http://www.cplusplus.com/reference/ostream/endl... (by keskiverto)
|
by Protatoes
Calculator Program
|
Whenever I try to make a call to Calc function it says "no match to call, etc" I'm using Code::Bloc... |
May 23, 2013 at 6:05pm
[2 replies] Last: in my humble opinion, the problem is not only the function prototype: ... (by ar2007)
|
by dhilchie
invalid type argument of ‘unary *’
|
I keep getting a invalid type argument of ‘unary *’ error and im not sure how to fix it. my ... |
May 23, 2013 at 5:54pm
[4 replies] Last: thanks (by dhilchie)
|
by sakonpure6
Program not out putting last string
|
Hi I created a program that censors every 4 letter word in a sentence entered by a user. However for... |
May 23, 2013 at 5:35pm
[2 replies] Last: how do i fix that? take a way the +1? (by sakonpure6)
|
by trillo
Validation with while loop
|
Write your question here. How to write this validation program in c++? Write an imput validation... |
May 23, 2013 at 4:03pm
[1 reply] : Have you considered trying before posting? Also google std::con or loo... (by giblit)
|
by acemanhattan
Help creating condition for while loop
|
I want the while loop inside my function to run as long as characters are being read in to it from m... |
May 23, 2013 at 3:46pm
[3 replies] Last: Shouldn't need in your shift function but you should put something = s... (by giblit)
|