
please wait
by cminusminus
Game programming
|
Hello, Does someone knows what application can I use to program a game application? I use Visual Studio 2008. With application, I mean a CLR console appl... |
Jan 31, 2008 at 11:35pm
[2 replies] Last: alternatively, http://www.gamemaker.nl/ GM is one of the easiest en... (by antmj2317)
|
by keecha23
Recursion
|
I need help with my hw. I need help with the recursion part of the code. Here's the instructions: First, the program needs to ask the user for a Natural numb... |
Jan 31, 2008 at 11:33pm
[1 reply] : I'm going to write your program in *conceptual parts* it should loo... (by antmj2317)
|
by tclarke
problem with template disambiguation with MSVS2005
|
The following code: #include <vector> #include <string> using namespace std; template<typename T> class A { public: string getType() const {... |
Jan 31, 2008 at 11:20pm
[no replies]
|
by sam38
Memory leak
|
Hi ! I have my own program, say A and another one, say B, which contains many memory leaks My prog A has to call B. The first solution I used is to use t... |
Jan 31, 2008 at 12:35pm
[no replies]
|
by Lorris
Help with function template defined in header file
|
Hi could anyone help me with defining a function template in header file? I tried to define the template function within a header file and its cpp, and the er... |
Jan 31, 2008 at 10:59am
[3 replies] Last: martinlb and sushmat thanks for your reply and my tool finally works! ... (by Lorris)
|
by Sobo272
List scanner/re-organizer
|
Hello reader I am wondering how I would go about writing a C++ program that scans through the letters inputed into the program and then compare similarities to ... |
Jan 30, 2008 at 4:43am
[2 replies] Last: set /p ****= is a command that is compatible with MDOS as so are all o... (by Sobo272)
|
Still having a little trouble |
My program is shutting down earlier than I want it to. I have tried using all of the pause options given to me and still having trouble. Here is the code as it ... |
Jan 29, 2008 at 4:34pm
[5 replies] Last: Thanks for all the good info it all helped me. (by diablosilvermoon)
|
by herusalim
passing parameter of array of unknown type
|
Hi, I have problem in using void pointers. I want to pass parameter of array of unknown type. How could I implement it? In the pointers article, there is a... |
Jan 29, 2008 at 1:45pm
[2 replies] Last: You are right. I am a bit confused with this pointer, too much playing... (by herusalim)
|
by Mapster
I/O Erros
|
I have been working on a small console game using c++, i have done a lot to the game and now i have started making it so all the variables are been sourced from... |
Jan 29, 2008 at 8:55am
[no replies]
|
by akmal4ik
Help Me Please!!!!!!!!!
|
Hi! My name is Akmal. Can somebody help me with this problem: I have programs(skm.bat) wich works only from Command Promt I want to create USER INTERFACE fo... |
Jan 29, 2008 at 6:18am
[2 replies] Last: If I understand you correctly, the below should be what you're after? ... (by muzhogg)
|
by kirans
macro concatenation
|
let me just go straight into the output i want. i have a macro say #define M 32 i need one macro(say M_STR) which will give me "32" using the above decla... |
Jan 29, 2008 at 4:55am
[5 replies] Last: i don't think thats what i want, i want string 32 ("32"). (by kirans)
|
by s2kwak
Typecasting an Array
|
Hello, I just have a question on typecasting an array. For the code below: #include <iostream> #include <cstdlib> using namespace std; int main() { c... |
Jan 28, 2008 at 7:54pm
[2 replies] Last: Thank you so much. Really appreciate it. (by s2kwak)
|
by nelsonrip
Beginner: C vs C++
|
I was just wondering, do you need to know C in order to learn C++? Also, is C++ a good program to start learning programming with? I want to learn all kinds ... |
Jan 27, 2008 at 11:39pm
[2 replies] Last: thanks a ton, and i know i wont be an expert overnight. Really, i just... (by nelsonrip)
|
by PWWWWR
Hardware Stream
|
I need to learn how to write to ant port on a computer, whether it be I/O Serial, USB or even speakers... To tell the truth I'm just trying to write drivers... |
Jan 27, 2008 at 8:32pm
[no replies]
|
by boatguy26
In the dark
|
How would I write a program where the user enters a four digit number, but the answer is that each digit is on a separate line. Like this; 8 4 9 3 Any he... |
Jan 27, 2008 at 6:26am
[5 replies] Last: You can use arrays, or simply the strtok function. http://www.cplus... (by cminusminus)
|
by rite2bobby
C++ Homework question
|
Hi I have a homework problem that just got me stumped. How do I write a C++ program that takes a string containg a full name, and outputs each part of the ... |
Jan 27, 2008 at 1:05am
[7 replies] Last: Yup, something like that was what I was thinking, although you don't h... (by maingeek)
|
by mavrick108
TR1 libraries and ext/hash_map
|
I have no idea how to use the TR1 library within Visual Studio (2008) and more specifically the <ext/hash_map> libary. If anyone could help me get this to work ... |
Jan 26, 2008 at 7:44pm
[no replies]
|
by newguy07
help on writing a simple numbers combinations program
|
hi , i'm new to this forum , may i say this is a great site , now i want some pointer pls on writing this program in c++ , i am trying to write a program whe... |
Jan 26, 2008 at 3:31pm
[2 replies] Last: I hope this code helps you #include <iostream.h> #include <coni... (by alex79roma)
|
by gref
'double' to 'fix' error
|
I'm simply trying to use the c library cosine and sine functions, but I am getting a compile error. I'm using Visual C++ 2008. Here is the code and errors. ... |
Jan 26, 2008 at 2:20am
[3 replies] Last: Thanks for the help. (by gref)
|
by patrikwa
Circular Dependencies (Solved)
|
Hi, im currently developing a scenegraph for 3d graphics and need to do double dispatch which require me to pass one class as argument for another class that p... |
Jan 25, 2008 at 10:08pm
[1 reply] : Nevermind, i managed to solve it, if anyone else wonders how to solve ... (by patrikwa)
|