by Malos323
Completely lost on how to start this here (Primarily for the Constructors)
|
|
[5 replies] Last: As a starter, possibly: #include <iostream> class MyString { publi... (by seeplus)
|
by JLBorges
Will This Notebook Be Able To Handle All My Coding Software?
|
|
[no replies]
|
abstract class and interface classes |
|
[2 replies] Last: Thanks for the link. It looks like a good source of information.That w... (by closed account j8Mo2yTq)
|
Doing variable insertion directly into the string |
|
[3 replies] Last: Just as a Python FYI, f-strings are more elegant, and easier to read, ... (by MikeyBoy)
|
No Output |
|
[4 replies] Last: After attempting to open a file, you should always check that the open... (by seeplus)
|
by vivekunyl
no Operator "=" matches these operands , operand types -- Matrix = Matrix
|
|
[2 replies] Last: ok now i understand ! thank you. (by vivekunyl)
|
File Error |
|
[no replies]
|
by janac
Why is the buffer not empty?
|
|
[2 replies] Last: Thanks so much. (by janac)
|
by UberNin
Program Not Responding Correctly - Guidance Needed
|
|
[8 replies] Last: Consider using a switch instead of multiple if/else tests. Why keep op... (by seeplus)
|
by regolis
Using C++ to make a simple text-based application to timetable classes
|
|
[1 reply] : The first thing to do is to design the program. Then code from the des... (by seeplus)
|
by mokapott
Problem with vector and copy constructor
|
|
[2 replies] Last: You need a default constructor. Once you define a constructor, you no ... (by seeplus)
|
by MeiMei
Double link list question
|
|
[11 replies] Last: Thank you all for your help! Problem solved. After checking, I found o... (by MeiMei)
|
by JacindaKey
Array of objects through search.
|
|
[3 replies] Last: > However if bookName is of type char*/char (c style null terminated ... (by JLBorges)
|
by KimSolvay
The do while return error.
|
|
[1 reply] : Perhaps: #include <iostream> int main(void) { int cost{}; int sa... (by seeplus)
|
by KimSolvay
Error spotting
|
|
[2 replies] Last: Using the strandard mathematical result for the sum of consecutive int... (by seeplus)
|
Multiple lines outputting in files |
|
[1 reply] : Perhaps: #include <iostream> #include <fstream> using namespace st... (by seeplus)
|
The while loop problem |
|
[1 reply] : There are issues when you have the same file opened with two streams. ... (by seeplus)
|
by JacindaKey
Addresses in arrays.
|
|
[1 reply] : #include <iostream> #include <string> #include <array> struct Block ... (by JLBorges)
|
by AshleyCooper
Creating a save/load function for the text based game.
|
|
[1 reply] : What is the information that you want to save/load? (by JLBorges)
|
by AshleyCooper
Convesion of cents to dollars.
|
|
[1 reply] : #include <iomanip> and then const int cents = quarters*25 + dimes*... (by JLBorges)
|