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
  Want to learn C++ and confused where to start..         


Author: ryanbayona
Date: May 1, 2008 23:05

I really wanted to learn C++ thats why i took the initiative to self-
study. I am currently following the tutorial at this site:
[url]http://www.cprogramming.com/tutorial.html#c++tutorial[/url] but
im finding it a little lacking in some information i need, like data
types, native c++ objects and c++ functions. I am on linux and have
been compiling and running my c++ samples using the G++ compiler, is
that Ok? I mean will C++ code written in linux run on any platform? I
googled a lot of C++ tutorials and books, and im overwhelmed and got
easily confused. I need your opinion / advice on which site i can
follow the tutorials and which book to read. I have been programming
in PHP for about 2 years now and would really love to learn a new
programming language .

My ultimate goal is to develop desktop applications for linux, but for
now i'll deal with the language basics first.

Thank You So Much!
6 Comments
  Science Comic Series For Creative Children Published from Singapore         


Author: The Young Scientists
Date: May 1, 2008 22:58

Read and Buy Online at http://www.theyoungscientists.in
no comments
  Linux -- Ubunto         


Author: Raz_on_ubunto
Date: May 1, 2008 21:35

Dear friends,

I am trying Ubunto. I installed it via Wubi and it went fine. It's not
100%% pure native filesystem since it's installed via Wubi. As you can
see, I am posting via Pan. Damn! Agent, the windows newsreader, is way
better.

In any case, that word counting benchmark is slower here, at least the
java version. I was getting under 700 ms for 40 MB file on Windows, but
here I am getting over 800 ms. That's pretty sad.

In any case, to make you all happy, I will keep the topic relevant to C++
group by trying C++ version of wc anytime in near future when I can find
the time.
2 Comments
  Sexy Japanese Girls         


Author: 3711
Date: May 1, 2008 21:03

no comments
  Can "cout" do evil?         


Author: thomas
Date: May 1, 2008 19:48

#include
#include
#include
#include
#include
#include
#include

using namespace std;

#define M 1000009

vector primes;
Show full article (2.42Kb)
4 Comments
  A tutorial for all your C/C++ programming language needs         


Author: gokul
Date: May 1, 2008 18:51

Find details of all related to C/C++ programming language such as code
implementation, flow chart preparation and jobs related to C/C++.

http://www.blogonprogramming.blogspot.com
http://www.sqlserversoftware.blogspot.com
no comments
  Want to add image or icon         


Author: smd
Date: May 1, 2008 16:53

I have a project compiled over BCC5.02.

I have created a window with CreateWindow() function and buttons
within this wintow as its child. Now I want to add image. Can anyone
help me please
1 Comment
  new free fiction         


Author: mickey333
Date: May 1, 2008 15:58

no comments
  overflow in function parameter         


Author: KMAPSRULE
Date: May 1, 2008 15:31

I am porting an old C++ program to the current GCC platform and I have
the following setup:

//functions like this
void class::set_some_value( const unsigned char & value )
{
if( value > SOME_VALUE_MAX)
{
this->some_value_ = SOME_VALUE_MAX;
}
else
{
this->some_value_ = value;
}
}

The problem is that the MAX values are actually equal to the max limit
for the type (e.g 255 for the above example.) which means the
comparison against SOME_VALUE_MAX is alway false
Show full article (0.96Kb)
2 Comments
  ó++0x: atomic_load         


Author: Dmitriy V'jukov
Date: May 1, 2008 12:34

I'm reading latest draft of C++0x N2588:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2588.pdf

29.4.4/9
C atomic_load(volatile A * object);
C atomic_load_explicit(volatile A * object, memory_order);
C A ::load(memory_order order = memory_order_seq_cst) volatile;
Requires: The order argument shall not be memory_order_acquire nor
memory_order_acq_rel.

???

Why I can't specify:
atomic_load_explicit(&a, memory_order_acquire);
?

Or it's just a copy-past error? I think it must be:

29.4.4/9
C atomic_load(volatile A * object);
C atomic_load_explicit(volatile A * object, memory_order);
C A ::load(memory_order order = memory_order_seq_cst) volatile;
Requires: The order argument shall not be *memory_order_release* nor
memory_order_acq_rel.
Show full article (0.78Kb)
6 Comments
1 2 3