by ascii
Base Class Undefined
|
|
[2 replies] Last: *hangs self* Thank you... *hangs self again* (by ascii)
|
by chipp
recursive function
|
|
[1 reply] : You call the function three times (recursively or no), so the cout sta... (by Zhuge)
|
by chocIC
Using array with pointers
|
|
[1 reply] : These may help: http://cplusplus.com/doc/tutorial/arrays/ http://cplus... (by Zhuge)
|
by tonnot
How to write a template using header and implementation
|
|
[2 replies] Last: Well, you can have the definition and implementation in two separate... (by shacktar)
|
by siva2304
windows & web applications
|
|
[2 replies] Last: An "application" is a generic term for a process that can be loaded in... (by Computergeek01)
|
My code is repeating a part I don't want repeated... |
|
[12 replies] Last: Alright thanks, I appreciate your help. (by iggysmartbomb)
|
by sebgar
stdafx.h
|
|
[8 replies] Last: stdafx.h is trying to use stuff for VC++ to make your code worse. Sinc... (by LB)
|
by jnco6x
extracting an A+ from a line of mixed data
|
|
[2 replies] Last: Once you know how to read a file line by line, then really all you hav... (by shacktar)
|
Problem returning an object in an overloaded function |
|
[10 replies] Last: I was about to ask the same thing guestgulkan . You should be editing... (by Mathhead200)
|
by paolopiace
Dynamic array of struct into a struct
|
|
[2 replies] Last: Code with syntax errors will not compile (unless the syntax is valid j... (by Mathhead200)
|
by ty98
Text file
|
|
[1 reply] : #include <fstream> int main() { std::ofstream os("file.txt"); os ... (by Athar)
|
by Ernest
Sum of digits (1,2)
|
|
[21 replies] Last: I don't really see the recursivity, does the function call itself? Als... (by GisleAune)
|
copy first n letters of string |
|
[3 replies] Last: That worked great! Thanks for the quick feedback. I double checked m... (by thephysicsguru)
|
by mwalker56
Getting Image Dimensions
|
|
[3 replies] Last: Oh yes, I remember now. Magick++ is a real pig for getting the librari... (by Moschops)
|
by clarkk
Re-write for loop to make it run quicker??
|
|
[4 replies] Last: Replace i++ and j++ with ++i and ++j. Maybe replace the first nested ... (by moorecm)
|
by tam0009
Problems with modifying lists
|
|
[2 replies] Last: Ok I'm changing the list, but instead of me replacing the lowest score... (by tam0009)
|
by aerowenn
Typedef struct saving
|
|
[2 replies] Last: Wasn't aware of a copy, I'm rather new to C and coding in general. So ... (by aerowenn)
|
by Brooklyn
help tracing a program
|
|
[1 reply] : Write down the values of e and f after each line. #include <iostrea... (by hamsterman)
|
the scope of a class within another class |
|
[2 replies] Last: I see. Thanks a lot for your help :) (by soheilghafurian)
|
by jjzpgg
Collatz Conjecture
|
|
[6 replies] Last: Tested it and it works like a charm :) thanks again! (by jjzpgg)
|