Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 70319 - 70348 of 72259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
70319
Hi, I need to diagram a C++ template class hierarchy and its relationships to other classes in a Policy based design. Is there a tutorial online that shows how...
Jim Smith
jmclaurin11
Offline Send Email
May 1, 2009
11:32 pm
70320
... Did you try googling for any? http://www.google.com/search?q=UML+tutorial -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it,...
Brett McCoy
smartandkewl
Online Now Send Email
May 1, 2009
11:37 pm
70321
I am putting the numbers on the screen by laborious handwork. I am sure that there is a for loop for such a process. does anyone know of such a loop for the...
Robert Ryan
bobzcplpl
Offline Send Email
May 1, 2009
11:46 pm
70322
I am putting the numbers on the screen by laborious handwork. I am sure that there is a for loop for such a process. does anyone know of such a loop for the...
Robert Ryan
bobzcplpl
Offline Send Email
May 1, 2009
11:46 pm
70323
Does anyone know what the looping constructs are that are used in command line interfaces that use a switch such as -d or -a in their argv? Any argv value...
Bill Cunningham
billcu34
Offline Send Email
May 1, 2009
11:59 pm
70324
... The POSIX approach is to use getopt(). But it is fairly easy to roll your own. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus...
Thomas Hruska
shininglightpro
Offline Send Email
May 2, 2009
1:06 am
70325
... for (int i = 0; i < 12; i++) { // this will give us the number of degrees from the '12' on the circle to the number 'i'. (0 equals 12) float deg = (i / 11)...
Christopher Coale
chris95219@...
Send Email
May 2, 2009
8:09 am
70326
... Example: http://qnxclub.net/files/articles/unix03/functions/getopt.html...
John Matthews
johnmatthews...
Offline Send Email
May 2, 2009
11:54 am
70327
I know STL's deque has O(1) in insert/delete and access. How is it implemented? I don't quite follow the source code. Thanks,...
frankzhu_2001
Online Now Send Email
May 2, 2009
4:52 pm
70328
http://en.wikipedia.org/wiki/Deque and look into msdn forum. ________________________________ From: frankzhu_2001 <frank.zhu.mingyu@...> To:...
Snit Roy
coolsayan...
Offline Send Email
May 2, 2009
7:21 pm
70329
... ...why? Thanks, Tyler Littlefield Web: tysdomain.com email: tyler@... My programs don't have bugs, they're called randomly added features. ... ...
Tyler Littlefield
tyler@...
Send Email
May 2, 2009
7:23 pm
70330
hi guys, please help me choose which language to learn C# or C++? i'll be working primarily on windows environment. I also want to program games, tools and...
mark
anthonymorada
Offline Send Email
May 4, 2009
1:42 pm
70331
... C++... C# seems to me to be a glorified VisualBasic and ties you a particular platform. C++ will give you a lot more flexibility, performance (especially...
Brett McCoy
smartandkewl
Online Now Send Email
May 4, 2009
1:48 pm
70332
hello, If your doing windows programming, I recommend c#. If you want to go cross-platform, I recommend c++. Thanks, Tyler Littlefield Web: tysdomain.com ...
Tyler Littlefield
tyler@...
Send Email
May 4, 2009
1:57 pm
70333
Thanks Brett! I'm currently studying c++ now but i just came across reading some articles saying that C# works faster than those codes written in C++....
mark
anthonymorada
Offline Send Email
May 4, 2009
1:59 pm
70334
... C# is probably more like Java than it is C++, and also requires the use of a runtime environment (CLR), whereas C++ is native code and needs to be compiled...
Brett McCoy
smartandkewl
Online Now Send Email
May 4, 2009
2:07 pm
70335
... Hi, There is always a potential issue when discussing the merits of C# versus C++ or Java or whatever. The discussion usually fails to mention that C# is...
mrkcoconnell
Online Now Send Email
May 4, 2009
2:14 pm
70336
it really doesn't. Thanks, Tyler Littlefield Web: tysdomain.com email: tyler@... My programs don't have bugs, they're called randomly added features....
Tyler Littlefield
tyler@...
Send Email
May 4, 2009
2:14 pm
70337
... I'll be the one that is singled out. ;) C# has the ability to be as fast, if not faster, than C++. With the JIT, you have automatic-optimizations that...
Christopher Coale
chris95219@...
Send Email
May 5, 2009
12:34 am
70338
... Why discriminate? Learn them both! -- John Gaughan http://www.jtgprogramming.org/...
John Gaughan
john23874
Offline Send Email
May 5, 2009
12:59 am
70339
... Without looking at the source (and really only the interface is dictated by the standard, implementations may vary), I would say a linked list. Access is...
John Gaughan
john23874
Offline Send Email
May 5, 2009
1:03 am
70340
... And, when you see such articles, all you have to do is ask yourself: "What language is this language written in?" The answer is almost always "C/C++ with a...
Thomas Hruska
shininglightpro
Offline Send Email
May 5, 2009
1:34 am
70341
... I also see the claim constantly that Java can run as fast as, if not faster than, a C++ program, but have yet to see this in the real world. The startup...
Brett McCoy
smartandkewl
Online Now Send Email
May 5, 2009
2:12 am
70342
the concept of java being slower than C++ must be fixed. imho java is also built under C so it should be as fast as C or C++. according to my experience, what...
Jos Timanta Tarigan
jos_t_tarigan
Offline Send Email
May 5, 2009
6:50 am
70343
... As Thomas said, the only tests most people do are trivial and small: e.g. doing something simple and looping a zillion times. That is not accurate. All it...
John Gaughan
john23874
Offline Send Email
May 5, 2009
10:23 pm
70344
In my smartphone native C++ & Qt applications loads faster than even JAVA applications & JAVA applications consumes morn battery than native applications , so...
Vijay Shimpi
vijushimpi
Offline Send Email
May 5, 2009
10:26 pm
70345
yup yup, im gonna learn them both..thanks...
mark
anthonymorada
Offline Send Email
May 5, 2009
10:28 pm
70346
[mod-- That isn't a C or C++ statement. At best it's an expression. What does your reference manual say malloc does? --mod PN] hi, malloc(64) what will this...
abcpqr70
Offline Send Email
May 5, 2009
10:34 pm
70347
... Assuming your compiler does not flag this, it will likely give you a huge headache. Sure, you are allocating 64 bytes of memory, but you aren't assigning a...
Rick
thefirstrepa...
Offline Send Email
May 5, 2009
11:08 pm
70348
... It looks like a badly phrased question of "How does malloc work?" as opposed to "What does malloc (in general) do?" How malloc works differs from compiler...
Paul Herring
shabble
Offline Send Email
May 6, 2009
6:20 am
Messages 70319 - 70348 of 72259   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help