by kronos
Disabling javascript in Firefox with C++
|
|
[no replies]
|
Pointer arithmetic |
|
[1 reply] : I think the standard is clear - your code is wrong. But I'm sure it wi... (by Abramus)
|
by buffbill
reverse () function
|
|
[4 replies] Last: Yes.....thank you kenshee I understood Bazzy. (by buffbill)
|
by ccoder
Object Oriented Number Guessing Game with Range
|
|
[1 reply] : no need just use a static bool or a just bool if your only running one... (by kenshee)
|
by Liam Buckley
here do i go from here?
|
|
[4 replies] Last: Start with Thinking in C++ it is word heavy and long but well worth th... (by kenshee)
|
by netP
Big-O...
|
|
[1 reply] : It's O(n^k), or polynomial. Big O notation only gives an approximate r... (by helios)
|
by mrkhtn
integer to user-defined type
|
|
[7 replies] Last: hey I debugged it, thanks for the help though bazzy (by mrkhtn)
|
need a smart pointer that can be customized |
|
[2 replies] Last: Look up boost::smart_ptr library. You can write your own custom alloc... (by jsmith)
|
by JRevor
About sets of sets (set< set < KEY> >)
|
|
[6 replies] Last: Thanks, PanGalactic, that was the answer I was looking for. (by JRevor)
|
by dkaip
problem with using variables as ofstream save locations
|
|
[2 replies] Last: Thank's a lot (by dkaip)
|
by djkalai
I HAVE PROBLEM WITH THIS
|
|
[7 replies] Last: Okay, you still have not said what your error is, but I think you need... (by closed account z05DSL3A)
|
by mcleano
Need feedback on an idea for a program
|
|
[6 replies] Last: The general answer seems to be to use a stack so I'll give that a go. ... (by mcleano)
|
by giro82
Getting variable value & error E2288
|
|
[1 reply] : The -> operator doesn't do what you seem to think. You can't get a ... (by Disch)
|
by chrisname
Get 1 byte from a 4 byte variable
|
|
[4 replies] Last: Like this: unsigned ecx; asm volatile( "cpuid\n\... (by chrisname)
|
by localmotion
Memory handling
|
|
[5 replies] Last: That's what classes are really for, to break up the program into littl... (by kbw)
|
by razi3105
Anybody Try Solve This. ASAP!!
|
|
[4 replies] Last: Cannot compile...... :-(( (by razi3105)
|
by CQ75
Linking error using a class list.
|
|
[5 replies] Last: Are you using Visual C++ 6.0? (by helios)
|
by mrkhtn
C++ pointers (1,2)
|
|
[25 replies] Last: Helios: Hint: use a supporting data structure with a link list. th... (by writetonsharma)
|
by smcguffee
template header issues
|
|
[4 replies] Last: This is what your header should look like: #ifndef _CDRAWSEQUENC... (by Disch)
|
by Jerome
C++ forbids comparison between pointer and integer
|
|
[2 replies] Last: You are comparing a char (integer) with a const char* (a pointer):... (by Duthomhas)
|