by stanz
Anyone got idea to do this?
|
|
[4 replies] Last: Please use [ code] tags. Like this: #include <iostream> //#include... (by Duthomhas)
|
by allensark
Input File Assignment Confusion
|
|
[5 replies] Last: your cin.getline() function will return the whole line from your text ... (by TECKSPEED)
|
by Furyoku
How to use switch with string?
|
|
[1 reply] : You can't. Use a chain of if, else-if. if (str == "apple") { std::co... (by Peter87)
|
Purpose of strcat |
|
[1 reply] : http://www.cplusplus.com/reference/cstring/strcat/ (by keskiverto)
|
reference book for c++ in CBSE |
|
[no replies]
|
1D array doubt |
|
[5 replies] Last: Thanks a lot for ur help!!!! (by supershooverine)
|
Arrays... what's going on? |
|
[2 replies] Last: sizeof returns the size of the array in bytes. cout << 10 * sizeof(s... (by Peter87)
|
by Marnez
Bad memory allocation?
|
|
[2 replies] Last: Oh my... Haha.. Thank you for pointing out such a bad mistake. (by Marnez)
|
by sajis997
Array of pointers to pointers
|
|
[5 replies] Last: I can't compile incomplete code but it looks fine. Is it the extra * ... (by Peter87)
|
by theperson
I'm having problems using a void pointer to iterate through a SimpleVector template I got from a book...
|
|
[4 replies] Last: I realized that in simplifying my problem into the above code... I did... (by theperson)
|
by mabbia
removing repeated words form array
|
|
[no replies]
|
by jordy1993
Calculating area of triangle of sides a, b with angle C between them
|
|
[11 replies] Last: Hi Jordy, First of all, good effort in fixing up your program. Lots o... (by TheIdeasMan)
|
by Marnez
Question - Spaces in strings
|
|
[10 replies] Last: And I tried using the ignore func but it didn't work for some reason.... (by naraku9333)
|
by theperson
Getting error: expression must have a pointer-to-class type when using a void pointer access methods of a template object
|
|
[2 replies] Last: Thanks (by theperson)
|
Rock Paper Scissors Lizard Spock |
|
[4 replies] Last: [code firstline=70]if ( CompChoice == 1 ) { CompChoice = '1'; ... (by long double main)
|
by Nukem
Do While
|
|
[3 replies] Last: You also haven't accounted for 3 and 25. So maybe if(height>=3 && hei... (by long double main)
|
by ConfigMC
Char array loading from file
|
|
[no replies]
|
by theperson
What is the best practice for where to put validation functions when I have multiple classes that need to use them?
|
|
[4 replies] Last: Alright, thanks for letting me know. I had no idea that was possible b... (by theperson)
|
by cory244
Valid input checking
|
|
[13 replies] Last: Sweet that worked I forgot about the c_str() thats what happens when y... (by cory244)
|
by KvltKitty
simple question
|
|
[1 reply] : cin >> something gobbles up all leading whitespace (this includes ne... (by long double main)
|