Forum: C++
Aug 9th, 2006, 11:24 PM
|
|
Replies: 13
Views: 327
|
Forum: Coder's Corner Lounge
Aug 7th, 2006, 10:14 PM
|
|
Replies: 2,124
Views: 26,506
|
Forum: Other Programming Languages
Jun 3rd, 2006, 2:58 PM
|
|
Replies: 1
Views: 156
Need advise in DB development
I looking at developing a database that contains student information like contact information as well as class schedule, report cards and transcripts. I want the database to link to another database...
|
Forum: C++
Feb 12th, 2006, 9:27 AM
|
|
Replies: 14
Views: 377
|
Forum: C++
Feb 11th, 2006, 1:33 PM
|
|
Replies: 14
Views: 377
|
Forum: C++
Feb 11th, 2006, 11:35 AM
|
|
Replies: 14
Views: 377
|
Forum: C++
Feb 11th, 2006, 10:58 AM
|
|
Replies: 14
Views: 377
I believe that double is represented as two...
I believe that double is represented as two unsigned long int's, so I guess I'm left with using two unsigned long int's and overloading the operators?
Thanks DaWei and sunnypalsingh for your...
|
Forum: C++
Feb 11th, 2006, 8:52 AM
|
|
Replies: 14
Views: 377
bitwise operators and type double
Hello,
I'm tring to use bitwise operators like <<, |, &, ^ with a double data type.
double foo = 0;
double bar = 0;
double huh = 0;
huh = (foo & bar);
I compile and get an error
|
Forum: C++
Jan 5th, 2006, 5:22 PM
|
|
Replies: 2
Views: 130
|
Forum: C++
Jan 4th, 2006, 10:30 PM
|
|
Replies: 2
Views: 130
pointer in base class to derived class
So I have this grid and it is made up of cells
class Cell{
private:
int value;
public:
void set_value(int in);
int get_value(void);
int event_handler(void);
// other code
|
Forum: C++
Oct 24th, 2005, 9:34 PM
|
|
Replies: 3
Views: 132
|
Forum: C++
Oct 24th, 2005, 9:20 PM
|
|
Replies: 3
Views: 132
It's kinda long. The only thing that realy...
It's kinda long. The only thing that realy happens before the code I quoted is that old_d is built from a file that is loaded. I know that part of the code works because I have used it in other...
|
Forum: C++
Oct 24th, 2005, 6:58 PM
|
|
Replies: 3
Views: 132
SIGSEGV from std::~basic_string
Hello,
I am having a problem with this section of code.
for (int a = 0; a < old_d.size(); a++)
{
d_temp.push_back(old_d.at(a));
boogie temp;
temp.boogie_(old_d);
...
|