by Mamo Grag
Undefined reference to a C function in C++
|
|
[2 replies] Last: [quote=Mamo Grag]The command that i use to compile : g++ main.cpp ope... (by TheIdeasMan)
|
by AAAbb7
Trouble declaring some variables
|
|
[1 reply] : You're trying to call functions named "readMovies", "readRatings", "pr... (by Peter87)
|
by AAAbb7
The output of my code repeats the same number
|
|
[5 replies] Last: We were not fixing the problem yet. We were just figuring out what the... (by keskiverto)
|
by vboro
Problem with exp() function in C?
|
|
[18 replies] Last: https://en.cppreference.com/w/cpp/utility/format/formatter#Standard_fo... (by deleted account xyzzy)
|
by ElusiveTau
What happens behind the scene (and by whom) when heap memory is deallocated?
|
|
[2 replies] Last: 1. Where things go in VM is decided by the OS, not the linker. https:/... (by salem c)
|
by Ch1156
Cant insert element into map
|
|
[17 replies] Last: Exactly! And that's the reason for the ... Iterator iter = m_contain... (by againtry)
|
by Ghostmoo
Array Problem
|
|
[2 replies] Last: Well at least the input file has been provided... What is the 'array'... (by seeplus)
|
by anonomyss
Need help on code correction
|
|
[5 replies] Last: enum class_t { FIRST, ECONOMY, INVALID }; class_t determine_class( c... (by JLBorges)
|
by sonnyM12
inserting a switch for my menu
|
|
[3 replies] Last: Not sure what you after re while, option 2 etc, but possibly something... (by seeplus)
|
by Mamo Grag
g++ is compiling the files in include directory wich i don't want to
|
|
[1 reply] : gcc/g++ does not compile any source code files, unless you either ex... (by kigar64551)
|
by Alvi1995
Error using blitz
|
|
[3 replies] Last: Sorry. I was think thinking that Array was referring to std::array - n... (by seeplus)
|
Destructor |
|
[5 replies] Last: The STL <list> is destroyed automatically so doesn't have to be treate... (by againtry)
|
stumped on password check program |
|
[7 replies] Last: I did mention it was a first pass, sloppy bit of code. Which was bei... (by deleted account xyzzy)
|
by myriad6860
How to count number of letters in words that start with d?
|
|
[6 replies] Last: I got it to work, thank you all! (by myriad6860)
|
by Krakenvangh
Repetition structure (FOR)
|
|
[4 replies] Last: [quote=Krakenvangh]my teacher isn’t really teaching those things and... (by deleted account xyzzy)
|
by Mamo Grag
How to pass a simple math operation stored in a string to system then get the output
|
|
[5 replies] Last: If you are going to recognise precedence, then you are going to have t... (by seeplus)
|
by sthomas
uninitialized local variable
|
|
[3 replies] Last: Lets look at this part: float annualIntRate; // annual interest ra... (by keskiverto)
|
Reversing multiple inputs |
|
[6 replies] Last: #include <iostream> #include <string> #include <vector> #include <alg... (by lastchance)
|
by dede67
output
|
|
[6 replies] Last: What does "output code" mean? (by keskiverto)
|
Output range with increment of 5 |
|
[3 replies] Last: Fixed program w/ loop + bool: #include <iostream> using namespace s... (by seaminusminus)
|