by maroun
save a map in a vector that contains maps
|
|
[3 replies] Last: thank u (by maroun)
|
by bythree
I've hit a road block. SDL
|
|
[1 reply] : Never did fall asleep but figured it out!! #include <SDL/SDL.h> #in... (by bythree)
|
by ApacheOmega
Write a C++ progam to compute a polynomial
|
|
[5 replies] Last: @peter if I take out line 3 wont that take out the first part of the e... (by ApacheOmega)
|
by hitholdir
UML for C language project
|
|
[3 replies] Last: UML is an Object Oriented design method. Just because you're using C,... (by kbw)
|
by Ch1156
Can i do this in an if statement? (1,2)
|
|
[39 replies] Last: ok i'll do that. (by Ch1156)
|
by NWNINA
if/else program. cannot figure out what's wrong
|
|
[7 replies] Last: Here, this should work:- #include <iomanip> #include <iostream> usin... (by Dash)
|
by Ginnjii
A little help with terminal screen clearing
|
|
[2 replies] Last: odear. There's a whole article for it. Now I feel terribly silly for... (by Ginnjii)
|
va_list isnt working propertly |
|
[3 replies] Last: Of course if you have a type mismatch, you'll have errors in processin... (by kbw)
|
by heroo9211
What is the actual need of "classes"? How classes are beneficials?
|
|
[2 replies] Last: Do you understand the need for variables? Like int, double, float, cha... (by Moschops)
|
by newbe25
inheritance testing project
|
|
[3 replies] Last: Thank you both, very much. That makes a lot of sense, especially seei... (by newbe25)
|
by Richard1
size of a text file
|
|
[3 replies] Last: Yeah, you need to manually test how much was read. C++ iostreams are ... (by bradw)
|
by lukeb
passing a multiple vector
|
|
[5 replies] Last: I've solved! It was my mistake: I had declared two time the same vari... (by lukeb)
|
by Naureg
Recommend me an image editing library
|
|
[1 reply] : You want easy and fast; those are generally conflicting considerations... (by Moschops)
|
by prabhanuka
Largest no of given 3.
|
|
[2 replies] Last: Because of the transitivity property max(x,y,z) = max(x, max(y,z)) ... (by ne555)
|
by vgoel38
array
|
|
[4 replies] Last: @vgoel38 When you first create the array, as in int arr = {0}; ,... (by whitenite1)
|
by vgoel38
finding 100!
|
|
[12 replies] Last: Correct. Curly braces allow you to set multiple values at once, which... (by closed account o3hC5Di1)
|
by Bassam300
Random nubers
|
|
[11 replies] Last: unsigned array[rows*columns]; //fill the "matrix" 1 to rows*columns ... (by ne555)
|
by Aceix
Unions
|
|
[5 replies] Last: Because C++'s conversion operators do not allow conversion to a void ... (by ne555)
|
by samrux
Looping sound with mciSendString
|
|
[3 replies] Last: repeat should be after the media name. I do prefer to open with an al... (by andywestken)
|
by maroun
load text files from directory
|
|
[4 replies] Last: Thank u Peter !! (by maroun)
|