by upo
Strings
|
|
[10 replies] Last: 'A' is a numeric literal translated by the compiler at compile time. ... (by Hammurabi)
|
by Bv202
Generating 3 random numbers
|
|
[5 replies] Last: Yes. He said '0' means current time This is wrong since it always gi... (by Hammurabi)
|
by Gumbercules
inheritence problem g++
|
|
[4 replies] Last: Sorry, I guess I was too tired last night, because when I tried it aga... (by Gumbercules)
|
by arshak
opening web-pages
|
|
[3 replies] Last: it took me 5 mins to find this on google--- #include <iostream> #... (by kyle11778)
|
by cuhlognuh
Trying to create an array of objects in a class
|
|
[2 replies] Last: This error occurs because each file includes the other, a potentially ... (by Hammurabi)
|
by kyle11778
SUCCESS...almost
|
|
[7 replies] Last: I forgot to put a break; right after mydoc.close(); (within that b... (by Hammurabi)
|
by murva
pointer to array of objects
|
|
[3 replies] Last: Thanks!! (by murva)
|
by Joe101
Recursion int param const issue
|
|
[3 replies] Last: Yeah it happens to us all lol :) am i right in presuming you're a math... (by mcleano)
|
by abuikhlas
How to create array of class without default constructor
|
|
[3 replies] Last: Thanks for the answer. Abu (by abuikhlas)
|
by cppstudent
How you change an object from base class to derived class?
|
|
[8 replies] Last: Thank you all of you. I also thought of using static_cast but then I... (by cppstudent)
|
by greg022549
Wrong Compiler?
|
|
[1 reply] : there is a lot of different formats Of what? Of compiler output? That... (by helios)
|
by Claymz
reversed string: string space problem
|
|
[18 replies] Last: you know what, i agree with you completely and ill listen to your advi... (by Claymz)
|
by aznkillaxp
Quadratic eqaution solver not finish
|
|
[1 reply] : change d=(pow(b,2))-4(a*c); to d=(pow(b,2))- 4 * (a*c); ... (by kyle11778)
|
by tkurowski
More delete problems
|
|
[9 replies] Last: Alright well it looks like its not a simple enough problem. I will go... (by tkurowski)
|
by nanger
what is the purpose of using 'const int &' as formal argument?
|
|
[3 replies] Last: Passing an int by reference and promising not to modify it is a strang... (by Hammurabi)
|
by arnes99
How to count words effectively?
|
|
[10 replies] Last: You could use isalpha, like this: #include<iostream> #include<str... (by Hammurabi)
|
by silversgun
Print Pyramid?
|
|
[3 replies] Last: When I get home, I have a small class and a couple algorithms that plu... (by closed account S6k9GNh0)
|
writing code for certain functions.. |
|
[2 replies] Last: Check out this link. http://cplusplus.com/reference/string/getline/ ... (by kempofighter)
|
by Nenallar
Symbols within strings.
|
|
[5 replies] Last: The backslash is used for two purposes. First, it gives special m... (by kempofighter)
|
by murva
const char*
|
|
[4 replies] Last: Thanks, I got it now; very clarifying example (by murva)
|