by TurboGrafx
Help point me upon my journey :)
|
|
[2 replies] Last: Thank you :) It seems I am finally picking up the language. I just ne... (by TurboGrafx)
|
by Ekinne
C++ fraction numbers
|
|
[7 replies] Last: Shh! I'm just messing with the guy because he excepts someone else to... (by cire)
|
by adam2016
recursive function question
|
|
[6 replies] Last: In all cases you return from the function before line 20 is reached. ... (by cire)
|
by cabigler
the game of nim
|
|
[4 replies] Last: use header file #include<stdlib.h> #include<time.h> // then in int m... (by bird1234)
|
by PirateCat
Help with finding sum of digits
|
|
[5 replies] Last: #include <iostream> int sum_of_digits(int aNumber){ int sum = 0;... (by closed account 48T7M4Gy)
|
Why can't I initialize int* with data |
|
[3 replies] Last: as a little diversion, something like this int* p = {1,3,4}; // inval... (by Cubbi)
|
Why can't I do ++*ptr with char* |
|
[6 replies] Last: > Are you trying to say that once I declare: > char* c="XYZ"; > I ca... (by JLBorges)
|
by Perru
Reverse of an input string
|
|
[8 replies] Last: the function should not return anything. int main() { string s... (by keskiverto)
|
by Mandory22
This vector assignment is too general, please help!
|
|
[5 replies] Last: Thanks all. Because of all of you I was able to complete this assignme... (by Mandory22)
|
by cabigler
switch statment
|
|
[7 replies] Last: thanks that does look a lot cleaner (by cabigler)
|
Entering a (space) from user input skips the next part of code? |
|
[3 replies] Last: Awesome, I appreciate the help. Thank you! (by pleaseINeedHelp)
|
How do I call a bool function in main? |
|
[1 reply] : #include <iostream> bool IsAlphaHigher( const char& letterOne, cons... (by gunnerfunner)
|
by slaugher101
One Function at a Time (Hailstone Sequence)
|
|
[4 replies] Last: #include <iostream> #include <vector> int main() { std::cout <<... (by gunnerfunner)
|
by JOSEluis2796
read a specific line from the file
|
|
[2 replies] Last: ok, in that part (in that part that you have no idea) I mean what the... (by JOSEluis2796)
|
Hollow Rectangles |
|
[2 replies] Last: Thanks lastchance. It didn't work at first but I guess my compiler did... (by closed account 3vX4LyTq)
|
Input needed on starting an assignment. |
|
[4 replies] Last: At 13 digits, a valid ISB number will be too large to store in many pl... (by mbozzi)
|
by Kourosh23
Arrays and Pointers C++ (Question + Reference)
|
|
[11 replies] Last: [quote=Kourosh23]So you mean pointer should only point at one integer ... (by Peter87)
|
by jvardam
newfile.c:1:20: fatal error: iostream: No such file or directory
|
|
[10 replies] Last: i said to hell with netbeans and switched to visual studio and it work... (by jvardam)
|
by GG96
Using Selection Sort With A Two Dimensional Array
|
|
[4 replies] Last: Thanks gunnerfunner, but unfortunately we can't use std functions for... (by GG96)
|
by SSteven
Instantiating a class template on the heap
|
|
[2 replies] Last: He isn't saying it's impossible to place a instance of class template ... (by Cubbi)
|