Making your own header files |
|
[3 replies] Last: Headers usually contain: * An inclusion guard to prevent errors. * I... (by helios)
|
by advolente
Simple example for this error C2447
|
|
[4 replies] Last: The function body shouldn't be separed from its head Think that this ... (by Bazzy)
|
by Timbo1
Error not sure how to fix
|
|
[2 replies] Last: Is likely that you have an extra semicolon, something like this: t... (by Bazzy)
|
by Flash41000
Random Letters
|
|
[3 replies] Last: (lower case) letters start from character 'a' (ASCII 97) so you would ... (by Bazzy)
|
by fran101
writing to file
|
|
[no replies]
|
by chungolongo
Doubling amounts of "*" per line?
|
|
[9 replies] Last: I know this is a late post, but all you needed to do was add 'mark' ba... (by MikeB)
|
by Sharon Rose
case study in programming please..
|
|
[no replies]
|
by gundalav
Boost with MacPort (cannot recognize library when compiling code)
|
|
[2 replies] Last: Check to make sure that /opt/local/include is in your system include p... (by jsmith)
|
by Sammie22
template <class> question
|
|
[2 replies] Last: I'm not 100% sure, but I think the examples on lines 6 and 9 where the... (by jsmith)
|
by cplusforus
importing ascii data file for analysis
|
|
[4 replies] Last: hmm i have not heard of this grep, I will look into that. The other... (by cplusforus)
|
by suppsh
Infinite Loop and Int value
|
|
[3 replies] Last: Thanks Bazzy for helping. your post have helped me to clear my confusi... (by suppsh)
|
by Peyton
Directives and Namespaces
|
|
[1 reply] : A namespace is used to avoid name collision or to group something eg:... (by Bazzy)
|
by quant
parse cmd-line
|
|
[5 replies] Last: So, I've quantity hosts and like that chars... &ip = 192 &ip = 168 ... (by quant)
|
by foobar8675
typedef question
|
|
[3 replies] Last: typedefs are used widely in C++ to abbreviate and give more readable n... (by anders43)
|
by Return 0
Sum of C-String Integers
|
|
[3 replies] Last: the problem is that atoi() requires a null-terminated string as argume... (by anders43)
|
by gundalav
Pass by Reference versus Pass by Pointer in Function
|
|
[4 replies] Last: You can do that with references too. (by jsmith)
|
by shadowfire36
array and pointer questions
|
|
[5 replies] Last: There is no difference....arrray and *(array+i) are the same. (by firedraco)
|
by cppg2009
Question: Design Problem (Class and STL)
|
|
[2 replies] Last: Thank you. I will try to implement Class X{} and use Vector / List ... (by cppg2009)
|
by Return 0
Problems with isupper & islower functions
|
|
[7 replies] Last: That was the problem. Thanks! (by Return 0)
|
by tarantula19
Classes
|
|
[2 replies] Last: I too, thought about tree since they want a recursive structure. I f... (by djorhe)
|