by xbar2
Need some help with my C++ practice
|
|
[1 reply] : 1, 2 and 4 appear to be trick questions. There is no built-in integer... (by JLBorges)
|
by cplusplusgs
HELP!!
|
|
[10 replies] Last: Hello cplusplusgs, "using namespace std;" if for lazy instructors tha... (by Handy Andy)
|
by GhettoBurger
Include other cpp files into main.
|
|
[5 replies] Last: You've made the same mistake in line 20 of your first code block - you... (by MikeyBoy)
|
by panosdoken
string C++ and C-string
|
|
[2 replies] Last: string in c++ is a class/object with methods and internal memory manag... (by jonnin)
|
AUTOMATIC SHUTDOWN THE CONSOLE |
|
[8 replies] Last: Dev-Cpp uses the same MinGW compiler that comes with Code::Blocks 16.0... (by Thomas1965)
|
delete words from file |
|
[5 replies] Last: Here's one way of thinking about it, which is fairly simple. Read the ... (by closed account 48T7M4Gy)
|
by cplusplusgs
Can someone please help me solve this question?
|
|
[7 replies] Last: #include <iostream> #include <string> using namespace std; int main(... (by lastchance)
|
by Adjutant
Program does not give the right values.
|
|
[4 replies] Last: Thanks for the help guys, I appreciate it. (by Adjutant)
|
searching text file |
|
[2 replies] Last: thank you so much. (by closed account 1vf9z8AR)
|
file search even displaying part of word |
|
[2 replies] Last: thanks. (by closed account 1vf9z8AR)
|
by kingkush
HashTable Remove Function crashes program (1,2)
|
|
[21 replies] Last: My apologies. I didn't know this was a forum about which letters to ca... (by kingkush)
|
making a C++ program and need to input a bat code |
|
[6 replies] Last: missed the follow ups. system can be replaced with, depending on what... (by jonnin)
|
by Raul4pk
For loop question
|
|
[2 replies] Last: Telling the above in simple terms declare int i outside for loop and u... (by closed account 1vf9z8AR)
|
by Shyanie
How to assign the max & Min into the array's rows (1,2)
|
|
[23 replies] Last: Hello Shyanie, You are welcome. If you have any more questions just a... (by Handy Andy)
|
by xeef
sem_t for pthread on heap
|
|
[8 replies] Last: @coder777 This is called a dangling pointer. this is clear to me ... (by xeef)
|
by Ma92
reference returning functions
|
|
[5 replies] Last: Oh, interesting example. I didn't think of that, thank you. (by Ganado)
|
by Trigguy
confused on passing by reference
|
|
[2 replies] Last: Line 19 creates a whole new variable named x. Perhaps you meant: x... (by Repeater)
|
by Kourosh23
deleting an element in a class array
|
|
[6 replies] Last: vectors are sweet but you may want to avoid resizes and big data shift... (by jonnin)
|
by Bopaki
The function: replace_copy_if produces no output in my program
|
|
[5 replies] Last: ( int x ) -> int { return x <= 50; }, this should technically retur... (by gunnerfunner)
|
by Metalman488
Most Common Word in a Document (1,2)
|
|
[26 replies] Last: Won't scale up well but nevertheless. #include <iostream> #include <... (by closed account 48T7M4Gy)
|