Why does cin get skipped? |
|
[13 replies] Last: Cool, thanks! (by closed account Ey80oG1T)
|
by Talhasdmn
Graphics Menu in C++
|
|
[1 reply] : Could you provide a minimal reproducible example? (by closed account Ey80oG1T)
|
by yabi2943993
Learn how to use vectors
|
|
[9 replies] Last: Tada ... (by againtry)
|
Why does an integer prompt accept strings? |
|
[5 replies] Last: Whitespace doesn't matter. if (a) part_of_if_statement(); ... (by Ganado)
|
by GisiNA
How to see the content of a specific memory having only the address
|
|
[6 replies] Last: It requires asking your operating system to let you read the memory of... (by Repeater)
|
by yabi2943993
Get the last digit of a number
|
|
[14 replies] Last: Sigh. Sorry about that … I hate when I do that (by jonnin)
|
by woohyeon
WoW, I didn't know what emplace(_back) function is faster than push(_back)..
|
|
[6 replies] Last: I was just testing emplace_back or push_back(vector) or emplace or pu... (by mbozzi)
|
by mlanuri10
Breadth-first traversal for top down tree
|
|
[3 replies] Last: > 't' has a first child 'h' and its siblings 'r' and 'e'. ¿how do you... (by ne555)
|
by drifterman20
A shopping bill
|
|
[6 replies] Last: #include<stdio.h> #include<string> #define max 50 int main() { int l... (by codyy)
|
by edward6
Extraction of data from .txt file
|
|
[7 replies] Last: You're looking at use of #include <iomanip>, setw, right, left etc Us... (by againtry)
|
by yabi2943993
0's of a factorial
|
|
[9 replies] Last: Oh ok. Haven't seen dutch's comment (by yabi2943993)
|
by Odglog
Per Object Function
|
|
[13 replies] Last: Thanks everyone for the help! I think I will go with @mbozzi approach.... (by Odglog)
|
by yabi2943993
Drawing a chess table
|
|
[7 replies] Last: Thanks to all for your help! (by yabi2943993)
|
by sindhu05
Can there be more than one n0 of a function in Asymptotic Notations?
|
|
[3 replies] Last: Once you identify a value n0 for which f(n) <= c g(n), EVERY INPUT SIZ... (by doug4)
|
by marhuum
array type to Array class type
|
|
[3 replies] Last: what problem are you trying to solve? New/delete calls done foolishl... (by jonnin)
|
binary calculator using vectorbool in c++ |
|
[1 reply] : we can't fix it without seeing it... post your code (in tags, the <> t... (by jonnin)
|
by Dzemolis
How do I find 10 most popular names from HUGE string array, it has like 850 names???this is a school project
|
|
[11 replies] Last: Here's what I meant. #include <iostream> #include <map> #include <str... (by dhayden)
|
by woohyeon
What is this way that something weird return?
|
|
[4 replies] Last: Thank you, guys!! (by woohyeon)
|
by johnstro12
Working with debug and optimized builds in one project
|
|
[1 reply] : I haven't used CodeLite before, but just as a cursory glance, it appea... (by Ganado)
|
How do I turn word into a list of letters |
|
[3 replies] Last: If you mean a std::list and a std::string, something like std::list<c... (by Repeater)
|