
please wait
Universal variable type? |
Is there any variable that will accept a user-input equation of "6 * (5 + 2) / 4" as an example? |
May 12, 2012 at 5:28pm
[3 replies] Last: If you would like, that a variable should accept each data type, also ... (by dadabe)
|
by rawstyle
make .wav not seperated from .exe
|
Hey guys. Is it possible to somehow 'merge' the used .wav files into the compiled program? For example, when I compile my program that have: PlaySound ("lol.... |
May 12, 2012 at 2:39pm
[2 replies] Last: You could write a program that copies the data of a wav file to a text... (by Stewbond)
|
by f1amingheart
Help In Looping
|
Can anyone help me figure out passing by function for a loop? int element(string Name, double Number, int Group, int Period, string Charge, string Formula, do... |
May 12, 2012 at 1:07pm
[18 replies] Last: I declared cont as char,at the top of the code.These 2 functions are j... (by f1amingheart)
|
by perses
Not sure but related to Template Class
|
Hi, This is my first post and I am learning c++. I am trying to create a programe like this: n1 = NAttrib() n2 = NAttrib() out = NAttrib() NAttrib clas... |
May 12, 2012 at 11:29am
[1 reply] : Possibly something like this: template <typename AttribType> class ... (by closed account zb0S216C)
|
Need an array to be stored as a deck of cards, but random numbers instead. |
I get this output: 1 1 1 1 5 2 7 2 3 5 11 3 13 7 5 4 0 6 0 5 7 11 0 6 0 13 9 7 0 10 0 8 11 0 0 9 0 0 13 10 0 0 0 ... |
May 12, 2012 at 10:53am
[4 replies] Last: Thank you cire. I completely overlooked that. (by Gregory Sakas)
|
by ecchii
Min and Max in an array (Special Case) (1,2)
|
Solved |
May 12, 2012 at 9:54am
[22 replies] Last: You should visit http://www.cplusplus.com/articles/oGLN8vqX/ (by cire)
|
by rawstyle
PlaySound not working
|
Hello. I am having problems getting this file to be played: C:\BLACKJACK\welcome.wav (It's a .wav with a length of 1 sec.) The file is located in the ... |
May 12, 2012 at 9:35am
[no replies]
|
by geno136
Month Schedule
|
I'm trying to make a scheduling program that schedules person A,B,C and D to work on specific days of the week. 1. Person C cannot work on Tuesdays and Thurd... |
May 12, 2012 at 8:46am
[no replies]
|
by Owain
Faster alternative to GetPixel()?
|
Hello, I want to write a program that streams the contents of a person monitor over the internet and those with the 'reciver' program can view the stream, so th... |
May 12, 2012 at 8:17am
[no replies]
|
by s13kcut
fb
|
fgth |
May 12, 2012 at 7:58am
[7 replies] Last: ^Makes perfect sense. I never saw this so continued to do this. Was my... (by s13kcut)
|
by chipp
bug
|
does i have done some mistake in my code below? #include <iostream> #include <conio.h> using namespace std; void char_encrypt (char * modif_char) { i... |
May 12, 2012 at 5:39am
[4 replies] Last: x_x my bad... (embarrassing) (by chipp)
|
by Jayhawker07
Help with a beginners code???
|
Hi, I am learning C++, and I am trying to make something to calculate the area of polygons. I am using Dev C++ and it is great, but I don't understand why it wi... |
May 12, 2012 at 5:38am
[2 replies] Last: Besides a warning about a conversion from double to unsigned short in ... (by shacktar)
|
by JAM96
Class to Main
|
Hey I was wondering if it is possible to go back to the main() from a class I tried researching but I don't know what to search. Addition::Addition() { ... |
May 12, 2012 at 4:25am
[1 reply] : if(input == "Y" || input == "y") { //This is where ... (by codekiddy)
|
by rro0035
remove grammer from string
|
Hello i'm making a program where i have to search through a txt file and find the a word but the word should be found even if the word is "isn't" and the user e... |
May 12, 2012 at 4:17am
[7 replies] Last: '\'' Or, instead of special casing for each punctuation character: ... (by JLBorges)
|
by lukecian
Code::Blocks shortcut keys ?
|
Hi all: Are there any shortcut keys available in Code::Blocks? |
May 12, 2012 at 4:11am
[2 replies] Last: Cannot find the global refactoring shortcut key like Eclipse does; S... (by lukecian)
|
Project Ideas? |
Hey guys! I have been working on a few projects (none of which were for lessons) and I have come to a writers block of ideas. I was thinking about a texas hold ... |
May 12, 2012 at 3:28am
[2 replies] Last: Sounds like a good idea. I love math. Thanks! (by Gregory Sakas)
|
by guitarjose
for looping help
|
the book im learning from told me to write this code but when i do i get error: 'endl' was not declared in this scope. on line 9 #include <iostream> int main(... |
May 12, 2012 at 3:22am
[3 replies] Last: thanks (by guitarjose)
|
Bubble sort in assembly (1,2) |
Ok so I'm needing to implement a bubble sort in the marie assembler language, which some of you seem to be familiar with somehow. I can't seem to even get start... |
May 12, 2012 at 1:43am
[33 replies] Last: A possible implementation You push the parameters on the stack. So you... (by ne555)
|
by shanalikhan
saving multiple arrays and reading differently
|
hi . im beginner in c++. i learnt saving array in comma separated in file. but i want to know how i can enter 500 random arrays in one file and also read th... |
May 12, 2012 at 1:37am
[3 replies] Last: shanalikhan wrote: i learnt saving array in comma separated in f... (by dadabe)
|
by behzadkh
Life Time of a vairiabe
|
Hi, I was wondering is there anyway to define a variable inside a loop with global access definition. for instance how can i change use i out of the following f... |
May 12, 2012 at 1:20am
[4 replies] Last: @codekiddy Yeah that was right answer, I just defined a pointer befor... (by behzadkh)
|