by sakonpure6
How to add custome libraries to Microsoft Visual C++?
|
|
[4 replies] Last: This is the setup for SFML. You need to do the same thing for pretty ... (by kbw)
|
by zxcnd
cannot allocate an array of constant size 0
|
|
[1 reply] : We need to see the actual line that's generating the error along with ... (by kbw)
|
Debugging Issues |
|
[1 reply] : .get member function takes c-string and size as parameter. http://en.c... (by MiiNiPaa)
|
by a sk
Matrix size
|
|
[7 replies] Last: Thanks. I guess what I was incorrectly assuming that pointers don't oc... (by a sk)
|
by SourceCoded
Vector function?
|
|
[1 reply] : What is the purpose of int player on line 4 also you can not push a ve... (by giblit)
|
by new2c
My class declaration and function isn't taking the 5 arguments that it needs.
|
|
[6 replies] Last: As TheIDeasMan has already said use an initializer list. Constructor... (by giblit)
|
by odyssey
Error with pointers
|
|
[2 replies] Last: Hi pogrady, thanks a lot. That solved the problem perfectly.. (by odyssey)
|
by SourceCoded
Assigning variables to class
|
|
[4 replies] Last: Thank u gilbit :) (by SourceCoded)
|
by sl227
please help with homework
|
|
[5 replies] Last: Yeah I just figured his loop would start at 0. I think the while loop ... (by giblit)
|
by alexandrekrt
Fork()
|
|
[1 reply] : 1. fork() only works on unix-like systems, make sure you're not on Win... (by LB)
|
by angus725
std::thread question
|
|
[2 replies] Last: Inclusion of the "this" pointer fixed the problem. Thanks! Could you ... (by angus725)
|
by Jinjaninja1
Please point out the logic errors in this simple program
|
|
[4 replies] Last: You also want to use % to see if it has a remainder. Instead of /. So ... (by gobiking)
|
by Wolfwood
I am trying to find the amount of prime numbers between 1-100
|
|
[1 reply] : Well, for one, replace the last few lines of the isprime function with... (by Ispil)
|
by Ardeshir81
What does "VECTOR" exactly do?
|
|
[6 replies] Last: If you know what templates are use those. http://m.youtube.com/watch?v... (by AlitCandle)
|
by ThacZero
Creating "Library" Program
|
|
[no replies]
|
by AlitCandle
Can you explicitly call destructors when dynamically allocating memory?
|
|
[2 replies] Last: Generally, you shouldn't have to call deconstructors anyway. (by Ispil)
|
by himelkhan
Fibonacci series
|
|
[2 replies] Last: Well, first number is 0, second number is 1. Third number is first plu... (by Ispil)
|
by kevindav1
What's wrong with this?
|
|
[5 replies] Last: it's best to use getline(cin,name); in case the user enters their firs... (by sakonpure6)
|
by Jose94ji
Need help with reversing array
|
|
[4 replies] Last: You can also even use this really handy library called algorithm if yo... (by giblit)
|
by Og The Trog
what does "pointer(char*)pointer2" do? (1,2)
|
|
[20 replies] Last: char function ; ((void(*)())(*((void*)(&function))))();//... This i... (by JLBorges)
|