General C++ Programming - August 2010 (Page 14)

ctiveX control
 
How do you ship an ActiveX control with an application?
[no replies]
by kadesh
conflicting types
 
well, i have this code... i have tried to run it but the compiler tells me that there are conflicti...
[1 reply] : Hi , I have made some changes in the code you have to write delete... (by bluecoder)
Array of struct as function parameter
 
How to pass an array of struct as a function parameter? This is not working: struct Person ...
[2 replies] Last: Thanks. Solved my problem. (by farooqaaa)
convert from C++ to C
 
hey guys, can you please help me convert this from C++ to C ...
[5 replies] Last: @skilless thanks (by mahertamim)
How do I find the highest number and the lowest number in pointers and arrays?
 
My assignment is to use pointers to point at the highest and lowest temperatures in the array. I ne...
[3 replies] Last: #include <iostream> using namespace std; #define MAXTEMPS 4 int... (by bluecoder)
concealing password input
 
how do I replace each character the user types as a '*' instead of displaying it on the console in a...
[4 replies] Last: hey the man pages state that the getpass function is obsolete, is ther... (by unregistered)
by jzone3
Xcode
 
I recently switched to xcode from microsoft visual C++ so: how do you clear the screen how do you ...
[12 replies] Last: ya when I do that should I take out the # turn blink on (by jzone3)
suffixes for intgers and floating point
 
1. Literal constant What exactly is literal constant? int x = 35; Literal constants are lit...
[11 replies] Last: Hi, Thank you for your explination. I think as of now I will take t... (by jwxie518)
buying Hwid system
 
Am currently looking for a hwid system. most be coded in c++ so it can be implemented on to the sof...
[no replies]
auto_ptr problem
 
why am i getting error while destructing array of objects through auto_ptr; first object was delet...
[3 replies] Last: Use a dynamic sequence container, std::vector, std::list, std::deque, ... (by kempofighter)
boolean function parameter always true
 
Hello, I got a member function which just got one parameter (a boolean) as follows: class CCo...
[5 replies] Last: I suspect that the OP typed incorrectly into the forum. Always copy a... (by kempofighter)
by vijkrr
single linked list with data portion as different types
 
Hi, In one of my assignment, I want to write a single linked list in which data portion is of dif...
[2 replies] Last: You have a homework assignment to write a heterogeneous container? Ar... (by moorecm)
by ne555
How does delete [] work?
 
If you want to allocate dynamical an array of objects you can use this: Base *p = new Derived ...
[3 replies] Last: Short answer: Magic. (by Skillless)
template operator<<
 
i am playing with timers, I wrote an operator to put a timespec (from time.h) std::ostream& o...
[12 replies] Last: aah strange m4ster roshi I've already done something similar myself. ... (by bigearsbilly)
System Call using Paremeters
 
Hey guys , i need your help regarding calling of an executable. What i am trying to do is to call an...
[4 replies] Last: Sorry for that, im a noob when it comes to the standard classes ._.' (by Skillless)
Dynamic memory allocation
 
i have a class as below class Test { int m_nNum; public: Test( int nNum_i ) { m_nNum = ...
[7 replies] Last: You could reserve the memory and later construct the elements (one by ... (by ne555)
Finding Duplicates in sets of data (1,2,3)
 
I briefly saw someone post about this the other day and it encouraged me to write some code to do it...
[48 replies] Last: Ok, have you ever heard of hashing? I presume that if you think on thi... (by xorebxebx)
by aayu09
Singleton class memory management
 
I have a question about the singleton class. The following is a typical application singleton c++ a...
[6 replies] Last: There is a small difference. It's memory usage, in my case I use heap,... (by Denis)
by jzone3
Button
 
Does anyone know how to make a button (for a calculator) in Xcode for C++?
[no replies]
How many of these operators are inherited by heirs class
 
Overloadable operators + - * / = < > += -= *= /= << >> <<= >>= =...
[5 replies] Last: Thanks again, Yes, it does. Mine is spread over a little. (by EverBeginner)
August 2010 Pages: 1... 1213141516... 20
  Archived months: [jul2010] [sep2010]

This is an archived page. To post a new message, go to the current page.