Returning a specific value for use |
|
[2 replies] Last: Yep they all work just fine Thanks alot :D ! (by sidthekid2014)
|
by melmo703
Help with pass by value, and results by variable
|
|
[1 reply] : See section " Arguments passed by value and by reference " in http://w... (by keskiverto)
|
by p al
Erase elements from vector while iterating through vector
|
|
[6 replies] Last: Oh thanks! That was the problem! I hadn't included the header algorith... (by p al)
|
by gladi
Not reading my file.
|
|
[1 reply] : Try writing the file's absolute path. (by keskiverto)
|
by yepMe
Need to understand the logic of multiplication and addition logic
|
|
[7 replies] Last: The idiomatic loop while( f >> word ) { /* ... */ } will execute onl... (by JLBorges)
|
by tdk93
Why isn't the value of y incremented after this, z = ++x||++y&&++z?
|
|
[4 replies] Last: Don't confuse operator precedence with the order in which the code i... (by Peter87)
|
by Cyber X
Aggregation
|
|
[1 reply] : class passenger { /* ... */ } ; // CopyAssignable class bus { /... (by JLBorges)
|
by lays
how to shut down keyboard input buffer to directly react my key strike
|
|
[2 replies] Last: thanks. (by lays)
|
by tdk93
what's wrong with a>b?return(a):return(b);
|
|
[1 reply] : return a is not an expression. a>b ? a : b is an expression. Eith... (by JLBorges)
|
Returning array in C |
|
[3 replies] Last: Instead of returning an array from the function, we can fill an array ... (by JLBorges)
|
by Life24
Space ascii code
|
|
[6 replies] Last: const int SPACE = 32 ; // hard-coded code-point for space (32) assert... (by JLBorges)
|
by mcdochri
help with maze program C++
|
|
[3 replies] Last: If you are referring to removing the key once you have collected it t... (by Codermik)
|
by Nezar
I can't find the bug in this code
|
|
[5 replies] Last: Hey guys, Thank u for the solutions, it worked. To be honest, i didn't... (by Nezar)
|
by LayMuon
nullptr
|
|
[3 replies] Last: wait you are right. Everything works fine now, i missed one definition... (by LayMuon)
|
by hinesro
Pushing elements from front of deque to the back
|
|
[2 replies] Last: Ahh, just noticed that as well. Thanks for the quick response! I had f... (by hinesro)
|
by sambos
Reading from files with Win Form App
|
|
[no replies]
|
by DrZoidberg
Strings and binary data
|
|
[7 replies] Last: Alternatively: char* mem; int bnum; GetFileCont("Capture.PNG... (by cire)
|
by darrrkjin
Need help with reading into array
|
|
[1 reply] : i have figured out most of it , just having some problems with my sort... (by darrrkjin)
|
by BLANKE
NEED HELP WITH IF STATEMENT
|
|
[7 replies] Last: Thanks for the help :) (by BLANKE)
|
by JamesTzashi
Small Problem
|
|
[1 reply] : Your function doesn't do anything to modify your other values. It cr... (by Ganado)
|