by TonyR1234
C++ Programming Homework
|
|
[4 replies] Last: Thank you very much! (by TonyR1234)
|
by Ch1156
Creating a more concise C++
|
|
[16 replies] Last: Complexity exists underneath so that clarity can exist above. Ever lo... (by Duthomhas)
|
by pizza
output an array class member
|
|
[1 reply] : Ideally, you'd overload the << operator so you could say something lik... (by dhayden)
|
by stonedviper
What is the logic behind the THIS pointer
|
|
[4 replies] Last: I've given a simplified answer, even because it would have been imposs... (by Enoizat)
|
by Kappa
My dev c++ keeps crashing
|
|
[8 replies] Last: Returning has nothing to do with IO (cin/cout). Just to demonstrate..... (by Peter87)
|
by amaroa97
Help finding the average.
|
|
[1 reply] : Average is calculated as (sum of all values) / (number of values) S... (by Chervil)
|
by aedt
Do classes destroy all its objects when the destructor runs?
|
|
[4 replies] Last: also, your operator= may access out of range (by ne555)
|
Picross Programming Project Help |
|
[1 reply] : I’m trying to understand what your function randomPicture() should d... (by Enoizat)
|
enter like matrix |
|
[2 replies] Last: #include<iostream> int main() { std::cout << "\nEnter number of... (by Enoizat)
|
by ali1525
c++ pointer to string
|
|
[1 reply] : That's a huge block of text for someone to read on a forum. Think of ... (by Duthomhas)
|
initializing array to zero |
|
[6 replies] Last: > and if re-clearing it to re-use it: > memset(arr, 0, len*sizeof(int)... (by JLBorges)
|
by arwibrde
How to copy contents of txt file into struct array
|
|
[1 reply] : > I want to create a structure with two member string variables. > st... (by ne555)
|
by DanielsRUS
The most frequent range of numbers in an array.
|
|
[2 replies] Last: @DanielsRUS, Maybe I'm slow, but it took me a long time to realise fro... (by lastchance)
|
How do I prevent a user from inputting anything? |
|
[3 replies] Last: I am not sure that will prevent ctrl+C or alt+tab or other such things... (by jonnin)
|
by teeper
Collecting input from file
|
|
[14 replies] Last: I appreciate this Andy! Thank you very much :) (by teeper)
|
by Amiplus
Undefined reference problem
|
|
[11 replies] Last: Makefile in many directories. The project is not mine. It's an alread... (by Amiplus)
|
by zxcllk88
grade-replacement
|
|
[1 reply] : Please note that this is not a homework site. We won't do your homewor... (by keskiverto)
|
Data validation |
|
[3 replies] Last: Thnx Handy Andy and Enoizat.. I appreciate your help.. (by closed account iyRG3TCk)
|
Working with compilers for errors-Adjacency matrix |
|
[2 replies] Last: Ok So I needed to just ad using namespace std; in header file. remain... (by closed account Sz6592yv)
|
by dimit
Difference between char and wchar_t
|
|
[1 reply] : wchar_t does the same job as char but it can store more characters (o... (by coder777)
|