by minusnoob
C++ ring Buffer
|
|
[9 replies] Last: > ring_buffer( std::size_t cap ) : buffer(cap) {} Initialise the bu... (by JLBorges)
|
how to end the loop by input a string to double |
|
[1 reply] : You're making things way more complicated than it needs to be. The onl... (by integralfx)
|
by gunitinug
C++ primers Ex 1.11
|
|
[6 replies] Last: Don't miss the next gripping episode! (by closed account 48T7M4Gy)
|
by CrazdKC
Uninitialized Local Variable Error
|
|
[1 reply] : void setItemNumber(int) { ItemNumber = ItemNumber; } This just se... (by integralfx)
|
by muddawilder
Really confused
|
|
[no replies]
|
by cluelessnoob
Coin flip simulator repeating until heads appears
|
|
[8 replies] Last: This topic might help. http://www.cplusplus.com/forum/beginner/175514/ (by integralfx)
|
by CodeOpen
Declaration inside while
|
|
[6 replies] Last: You can use a declaration there but it appears to me it will not be ... (by closed account 48T7M4Gy)
|
by jekaterina
function does not take 3 arguments
|
|
[2 replies] Last: Thanks I got it fixed now. New question now. What does * and & mean? ... (by jekaterina)
|
by marjstov
Trouble with Find and Replace
|
|
[1 reply] : You're using a function std::string::find . Refer to it's documentat... (by cire)
|
by Cat32
trying to write a class
|
|
[1 reply] : The x and y should be capitalized. setxCoord(0); setyCoord(0)... (by Yanson)
|
by goon rider
Switch case help me please
|
|
[4 replies] Last: #include<stdio.h> #include<conio.h> #include<cstdlib> int main () ... (by goon rider)
|
by jhsyber
Please check if Classes Constructors and Functions are good
|
|
[no replies]
|
by Deliberation
Location of the keyword 'const' and its meaning
|
|
[2 replies] Last: This might be of help in determining which const means what and wher... (by YFGHNG)
|
by Rayne54
Y/N Loops
|
|
[4 replies] Last: Line 169: extraneous response variable, unneeded. Line 175: extra ... (by YFGHNG)
|
by tututboom
Accessing a .txt file and finding the number closest to 200
|
|
[3 replies] Last: welcome (by Ericool)
|
Need help with an "if" statement |
|
[4 replies] Last: You don't need two variables H and T , you just need one variable t... (by LB)
|
by newb4lyfe
Weird behavior in ncurses
|
|
[no replies]
|
by Maco10
Linking static libraries
|
|
[3 replies] Last: #include "Sum.h" int add(int n1, int n2) // not int suma(int n1, int... (by closed account E0p9LyTq)
|
by fguy
References
|
|
[2 replies] Last: For the first version of the code ri is bound to a temporary object of... (by cire)
|
by funnyguy1
Read Multiple Lines And ADD.
|
|
[10 replies] Last: Nvm finished it, thank you for your help!! (by funnyguy1)
|