
please wait
by Explodey
Getting mod keys in SDL
|
Could someone please tell me what is wrong with my code below? I've been reading through this book on SDL (Focus on SDL) and it keeps referencing members and f... |
Dec 7, 2013 at 8:34am
[2 replies] Last: Yep, that fixed it. I'm not really sure why, though. I'm pretty new ... (by Explodey)
|
by wolfv
next_permutation() misbehaving
|
The set of numbers {1 2 3} has six permutations, namely {1,2,3}, {1,3,2}, {2,1,3}, {2,3,1}, {3,1,2}, and {3,2,1}. http://mathworld.wolfram.com/Permutation.html... |
Dec 7, 2013 at 8:10am
[2 replies] Last: Thank you so much Cubbi ! sort(AVector.begin(), AVector.end()); Tha... (by wolfv)
|
by whiterayne
JB FAN
|
#include <iostream> using namespace std; int main() { cout<<"And i was like BABY BABY BABY OHHHH!!!"; return 0; } |
Dec 7, 2013 at 7:33am
[1 reply] : But you did not explain it well too. You did not tell that it is the p... (by rodiongork)
|
by q1670741824
why declare a explicit specialization? anyway it would be generated from template
|
why bother declare one, anyway the template would generate one base on the type. template <class T> void Swap (T &, T &); // template prototype template <... |
Dec 7, 2013 at 6:30am
[no replies]
|
by bowleruu16
creating this array
|
i have to write a function called scaleData that accepts an array of doubles and a double named scaleFactor. The function must multiple each element of data by ... |
Dec 7, 2013 at 5:53am
[1 reply] : 1. You didn't pass the array into your function. 2. Your scaleFactor v... (by Tresky)
|
by sky3
Problems with isdigit
|
Shouldnt this return either true or false? // FUNCTION: isdigit // Purpose: If the value of the single argument to the function is a // digit, the func... |
Dec 7, 2013 at 4:42am
[3 replies] Last: I think the point is not to use the std::isdigit() function. You n... (by Duthomhas)
|
by Dan Feerst
working with bits
|
I am working on a project involving a lot of bit manipulation. The program takes a string from input and needs to append bitwise information to it. I don't kno... |
Dec 7, 2013 at 4:39am
[no replies]
|
by beboman
Passing vectors through functions causes crash
|
iv looked over this 10000 times and i dont understand what the problom is, for some reason if i try to call the vector up in the function trying to make the SVG... |
Dec 7, 2013 at 4:25am
[8 replies] Last: also, i know what pass by reference and pass by value are, i just thou... (by beboman)
|
by HydRoLani
What is missing?
|
Hi Everyone! So, my code pasted below shows that my program reads the balance and transactions from a file named checkIn.dat. I'm not sure if I correctly wrote ... |
Dec 7, 2013 at 3:27am
[no replies]
|
by shamieh
Why am I getting this strange error?
|
Error: I get the error "initializer-string for array of chars is too long" #include <iostream> #include <cstdlib> using namespace std; //To create ... |
Dec 7, 2013 at 3:24am
[4 replies] Last: Hi @shamieh, this is how should it look but to be honest i prefer @Jam... (by eyenrique)
|
by drzazga
Undeclared Identifier?
|
for some reason im getting an undeclared identifier error for the method GetData. If someone could please help. // Author: // Source file: // Desc... |
Dec 7, 2013 at 3:21am
[8 replies] Last: I don't get any errors, only three warnings. (46) : warning C4101: '... (by xismn)
|
by fahmankhan75
How to find length of string?
|
Write your question here. Suppose user enters in a string of input "ab." I have these images { " _______ ", "( ___ ) " , ... |
Dec 7, 2013 at 2:33am
[no replies]
|
by fahmankhan75
Void parameter guidance?
|
I have these images in the global scope or outside of main function. There are more but this is how its going to look as const string Car1 = { " ... |
Dec 7, 2013 at 2:29am
[7 replies] Last: only if I had studied pointer yet :( I guess I will try to do bunch of... (by fahmankhan75)
|
by hiimmike
Random numbers in array
|
How would I make this not print out duplicates of the same number? Basically just print out 1-24 in a random order. Thanks! void GenerateCards(int randomn... |
Dec 7, 2013 at 2:23am
[2 replies] Last: thank you (by hiimmike)
|
by athrun200
How to simplfy my code? Paper-rock-scissor game
|
This is an exercise from the textbook by Savitch Write a program to score the paper-rock-scissor game. Each of two users types in either P, R, or S. The progra... |
Dec 7, 2013 at 2:18am
[5 replies] Last: Thanks everyone! I learn so many new codes now! (by athrun200)
|
by Windmill
Requesting hints for cpp problem.
|
Hey, all. I've been struggling with this problem for some time and cannot seem to figure it out; so, if anyone would be kind enough to look at it and push me i... |
Dec 7, 2013 at 2:08am
[no replies]
|
by Jose94ji
Problem with hangman game
|
Everything works fine, but my question is in line 76 why does the x not increment. I want to make it so that everytime the letter guessed is wrong it will move ... |
Dec 7, 2013 at 2:07am
[1 reply] : You are trying to increment x in your argument, which causes undefin... (by yulingo)
|
by drzazga
problem with seperating string.
|
Hello guys, I have to create a cash register problem for class. It takes values out of an input file, listed below, and has to calculate them. The problem I hav... |
Dec 7, 2013 at 1:55am
[1 reply] : File: 2000 1 1225.72 1 463.81 3 200 1 632 2 1500 1 300 2 1800 Am I r... (by yulingo)
|
Need A little bir of help with arrays |
Hey guys this is my first post here so sorry for any screw-ups I might make. In an assignment I have I've am asked to read from a file named "values.txt" whi... |
Dec 7, 2013 at 1:44am
[1 reply] : Well if you have 20 grades, you need an array of size 20. You've decla... (by yulingo)
|
by fahmankhan75
Logo going out of border
|
I have this function here that will print out a border outside this logo. const string Car1 = { " _______________", " //~~~~~~~~~~... |
Dec 7, 2013 at 12:33am
[2 replies] Last: Ok, I forgot to delete the semi colon on line 4 so that fixex the hori... (by fahmankhan75)
|