by Turbo82
Return derived class reference!
|
|
[4 replies] Last: Yes, it also works. Thanks for the reply. (by Turbo82)
|
Is this possible with C++ |
|
[3 replies] Last: You don't need to change languages. Try using Allegro 4 library. A sh... (by Kevin C)
|
by nanor00
input output?
|
|
[2 replies] Last: Some bugs are fixed by Ericool. Here are some explanations: 1. The o... (by tcs)
|
by DrkMagnus
New at C++ And need help
|
|
[4 replies] Last: With your assistance, it works properly. Thank you all very much for y... (by DrkMagnus)
|
by iAmChapin
Need some changes with a function (C++)
|
|
[6 replies] Last: you're welcome. :) (by Ericool)
|
by peterbaaij
char array and pointers II
|
|
[9 replies] Last: Here is a thread to help you understand , but mostly << is a method t... (by Ericool)
|
by suzuka
Basic Tables
|
|
[3 replies] Last: Thanks (by suzuka)
|
by Chad22
simple "class" question
|
|
[8 replies] Last: MikeyBoy, this has been clearly explained by everybody, but it took yo... (by Chad22)
|
by Outlaw782
Star program using a do while loop
|
|
[2 replies] Last: have you try this : int b = 1; do { int a = 1; do { cou... (by Ericool)
|
by peterbaaij
char array and pointers
|
|
[3 replies] Last: Replace this line p = letters; *p = "A"; by p = letters; *... (by Ericool)
|
by szlose
Memory leak problem(s)
|
|
[2 replies] Last: Okay thanks, Ill keep checking, at least i know this code is not a pro... (by szlose)
|
by zacklucky
overload constructor and accessor constructor issue
|
|
[2 replies] Last: Thank you so much! I knew it was small but I just wasn't seeing that o... (by zacklucky)
|
by Zyety
Just started and theres some question
|
|
[4 replies] Last: main is a method , int is the return type of that function . So you ar... (by Ericool)
|
How to output which user inputted each value? |
|
[2 replies] Last: try this : #include <iostream> #include <string> #include <array> ... (by Ericool)
|
by Binary91
Bitwise AND in a condition
|
|
[3 replies] Last: Ah that is it.. Thank you! (by Binary91)
|
by kevinkim
How can string values be +ed?
|
|
[5 replies] Last: by the way, I always put #include <stdlib.h> at the very first of my c... (by kevinkim)
|
by akash16
Hash table
|
|
[12 replies] Last: Arrays can not easily grow but lookup time is very less. i.e. O(1) Li... (by akash16)
|
by adriyel
Help with reversing order of my decimal to binary program?
|
|
[14 replies] Last: Less than? Operator<< isn't less than. It is bitshift. (by keskiverto)
|
by vaynex
Help with functions in a loop
|
|
[1 reply] : > You must add a function to your program called CalcInterest. > This... (by JLBorges)
|
by estephan
Help with random_shuffle
|
|
[4 replies] Last: std::random_shuffle() is deprecated and will be removed in C++17. In... (by JLBorges)
|