comp.lang.c++
  Home FAQ Contact Sign in
comp.lang.c++ only
 
Advanced search
May 2008
motuwethfrsasuw
   1234 18
567891011 19
12131415161718 20
19202122232425 21
262728293031  22
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.c++ Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Hallow* How are u?         


Author: joefredric
Date: May 16, 2008 21:31

Welcome to Forex Trading And Stock market details. We're here to
provide you with the tools and resources necessary for you to become a
successfulforex trader. Forex trading is a serious business and it is
vitally important that you are properly educated and informed before
committing your hard-earned money to the markets. Along with the Forex
Trading course and our online Forex Scalping course, we offer you
personal one-on-one coaching through our Forex Coaching Service
available worldwide. One thing I will guarantee you - you are going to
pay for education in this business either through experience or having
someone show you how to avoid costly mistakes before they happen - and
they will happen. Put the power of currency trading at your fingertips
through training with our experienced forex...
Show full article (0.90Kb)
no comments
  commander xenical us usa en ligne generique medicaments en France xenical canada sans ordonnance xenical le plus bon marche xenical suisse generique bon marche         


Author: kmwkawrt
Date: May 16, 2008 19:54

commander xenical us usa en ligne
generique medicaments en France
xenical canada sans ordonnance
xenical le plus bon marche
xenical suisse generique bon marche
Show full article (2.02Kb)
no comments
  newbie: Packed bitspecs?         


Author: oiccicny
Date: May 16, 2008 18:20

Is there a way to do the following code so that
day_data and other_data_1 occupy the same byte in
memory? Using the debugger, the addresses I'm getting are:
12ff5c - myVar.day_data
12ff60 - myVar.other_data_1
I'm using Microsoft Visual C++. sizeof(unsigned short) returns 2.
Thanks!
oiccicny@twcny.rr.com
Show full article (0.52Kb)
4 Comments
  son in c++         


Author: ashish
Date: May 16, 2008 13:10

how can a song or a video can be played in c++.
4 Comments
  converting char to int (reading from a binary file)         


Author: itdevries
Date: May 16, 2008 11:32

Hi,
I'm trying to read some binary data from a file, I've read a few bytes
of the data into a
char array with ifstream. Now I know that the first 4 bytes in the
char array represent
an integer. How do I go about converting the elements to an integer?
regards, Igor
16 Comments
  ?         


Author: pmj_76
Date: May 16, 2008 09:36

Hey Jon,

Where should I go after Logging in to the google website? Do I go to
a specific link and read the Wiki blogs?

1 Comment
  Reading columns in a text file         


Author: C++ Newbie
Date: May 16, 2008 07:40

Suppose I have a text file with the input:
1 2 3 4 5 6 7 8 9 10 ! Comment: Integers 1 - 10

How do I write a C++ program that reads in this line into a 10-element
vector and ignores the comment?

Thanks.
7 Comments
  function         


Author: gp19823238
Date: May 16, 2008 07:05

That's great, but do we really know what we do? Once someone found a
new type “diet” his is trying to use it for his business, but it is a
wrong approach. Your business is different, there are departments,
such as Sales, HR, Security, Financial. These departments function in
a different ways and if you will apply the same information diet to
all of them you will fail.

www.pengxq.cn
1 Comment
  What does 'illegal indirection' mean?         


Author: Lambda
Date: May 16, 2008 06:27

The code is simple:

// Token.h
#ifndef TOKEN_H
#define TOKEN_H

#include
#include
Show full article (1.27Kb)
2 Comments
  Constness with standard containters of pointers         


Author: Javier
Date: May 16, 2008 05:33

Hello,

I have some cuestions about constness with standard containers and
pointers.
Supose I have a list of pointers to some class B:

std::list< B * > > list;

I have readed that constness in std::list is the same that it is in C
arrays (const std::list makes const both the list and its content):

const std::list< B * > > constList;

I can't do:

constList->push_back(x);

But, is it still possible to call any non-const member funcion of B?:

void B::nonConstMemberFuncion();

As in:

constList.begin()->nonConstMemberFuncion();

a) It is possible. I don't want the user to add elements nor modify
any of the list. Which is the correct way of doing this?

const std::list< const B * const > > constList;
const std::list< const B * > constList;
Show full article (1.38Kb)
13 Comments
 
1 2