by ultraprism64
tricky FUNCTION CALL
|
|
[1 reply] : You have a matrix 1 5 9 2 6 10 3 7 11 4 8 12 in column major orde... (by hamsterman)
|
Type duplicate symbol player::player()in |
|
[3 replies] Last: Ahh thanks guys. I can't believe it was such a simple mistake. I'll lo... (by cloudarchitect)
|
Not decleared in this scope |
|
[2 replies] Last: Please include #include <cstdio> or #include <stdio.h> you need... (by richardforc)
|
by manyeahkiss
loop c++ : whats missing in this code?
|
|
[4 replies] Last: Haha that is very nice rocketboy! (by NickPaul)
|
by qwerty1
Removing values from Array
|
|
[2 replies] Last: Normally, one would use std::vector and std::remove: http://www.cpl... (by Athar)
|
by BushraSQU
Please please please :::how I can calculate the excution time in C++
|
|
[1 reply] : You can use clock() to measure execution time in clocks. CLOCKS_PER_SE... (by Athar)
|
by Neb1000
What is wrong with this copy constructor?
|
|
[8 replies] Last: Ah, good. Glad you fixed it. (by firedraco)
|
Direct3D Wrapper |
|
[1 reply] : It's reasonable to wrap C APIs so you can use them more naturally in C... (by Athar)
|
by dunsondog109
symbols not defined
|
|
[1 reply] : Problem fixed. I accidently copied the wrong file in my directory usin... (by dunsondog109)
|
by joro550
Changing states
|
|
[1 reply] : You need to work with pointers ;) #include <iostream> #include <v... (by m4ster r0shi)
|
by dsgreen
Problem with #include and virtual functions
|
|
[2 replies] Last: Object.h needs to include Attribute.h. Attribute.h can forward declar... (by jsmith)
|
by jdcollins
Clearing out pipes
|
|
[3 replies] Last: Not with just the pipe; you'd need another synchronization mechanism ... (by jsmith)
|
by f00tiefan
Sample midterm problems, class functions
|
|
[3 replies] Last: Not "going to". he most probably "has". (by rocketboy9000)
|
by unregistered
Do I need to lock static constants of a class in a multithreaded program?
|
|
[6 replies] Last: @Zaita: Question 1 dealt with static constants. It's pretty clear fro... (by PanGalactic)
|
by readysetgo
Creating a usable Executable on another computer
|
|
[3 replies] Last: bartoli - thank you. I prefer to have the libraries statically linked ... (by readysetgo)
|
by firix
iterator class
|
|
[no replies]
|
by bewers2
Array not being modified by function call
|
|
[4 replies] Last: Nailed it, stupid mistake, thanks. (by bewers2)
|
A string problem. |
|
[5 replies] Last: OH WOW Thank you... That made so much sense! Lol. (by HeWasLikeAGhost)
|
Auto_ptr deallocating object because of an unconstructed object |
|
[5 replies] Last: If foo() is never to own the auto_ptr (but B is) then foo should take ... (by jsmith)
|
by TheMystro
Using pthreads
|
|
[2 replies] Last: You have to perform an explicit cast of the pointer. (by jsmith)
|