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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 71484 - 71513 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
71484
... Are you wanting the performance-friendly solution or the quick-n-dirty solution? Performance-friendly is to precalculate exactly how much RAM you need and...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
3:12 am
71485
... Or wxWidgets, which has a GUI designer integrated into the wxDev C++ compiler suite. I recommend any of those. That way you aren't necessarily tied to a ...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
3:16 am
71486
Hi, Anybody knows Visual Studio .NET 2003 include installshield ? And which CD included ? how to install them ? Thx!...
wy737@...
wy737
Offline Send Email
Oct 31, 2009
3:37 am
71487
thanks I will try......
Nirav shah
nd_07it042
Offline Send Email
Oct 31, 2009
3:37 am
71488
thanks vishva...
Nirav shah
nd_07it042
Offline Send Email
Oct 31, 2009
3:38 am
71489
Hi Friends I know following topics in C - language array, pointer,function, data structure,graphics and basics of C++ classes, inheritance, polymorphism and...
kelvin_what_next
kelvin_what_...
Offline Send Email
Oct 31, 2009
3:38 am
71490
Here is the dll code that crashes....................................... LONG ProcessInputString(LPSTR strInput) { char* strfield2pass = ""; ...
totallyfreeenergy
totallyfreee...
Offline Send Email
Oct 31, 2009
3:38 am
71491
Hi All, Manny languages like C++ provides a way to generate random numbers. Like C++ provides a rand(); function to do this. But (it might be silly to ask) the...
Asad Abbas
black_hat6428
Offline Send Email
Oct 31, 2009
3:39 am
71492
Hi All, While dealing with functions in C++ . Generally, the C++ convention is the call-by-value. An exception is where arrays are passed as arguments, Arrays...
Asad Abbas
black_hat6428
Offline Send Email
Oct 31, 2009
3:39 am
71493
... As far as I know, InstallShield is not included with Visual Studio. And InstallShield is a terrible installer technology. You are better off making an...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
3:49 am
71494
... Functions like srand() and rand() are almost always PRNGs: http://en.wikipedia.org/wiki/Pseudorandom_number_generator These only generate sequences that...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
3:58 am
71495
... The Links section of the c-prog website has an extensive selection of subtopics in the areas you are interested in: ...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
4:00 am
71496
... Templates can be passed by value. Using std::vector<> or Block<> would do the trick. However, depending on use, you may also consider doing a 'const &', ...
Thomas Hruska
shininglightpro
Offline Send Email
Oct 31, 2009
4:04 am
71497
... Where are you copying the 'strInput' string? This code seems wrong. Luciano...
Luciano Cattani
xcianox2000
Online Now Send Email
Oct 31, 2009
11:15 am
71498
thanks...
Nirav shah
nd_07it042
Offline Send Email
Oct 31, 2009
5:56 pm
71499
... Yes, you are attempting to overwrite the constant string "" (which is just the \0 end-of-string character). You need something like: char...
johnmatthews2000
johnmatthews...
Offline Send Email
Oct 31, 2009
6:10 pm
71500
... You can also cheat by enclosing the array in a structure, and passing the structure by value. Eg. (sorry, in C) instead of: void processValues(int v[]); ...
johnmatthews2000
johnmatthews...
Offline Send Email
Oct 31, 2009
6:18 pm
71501
... No, they aren't. It's possible to pass by reference in C++ by using the reference operator. It is hence possible to pass an array by reference, but only...
Peter
peternilsson42
Offline Send Email
Nov 2, 2009
12:51 am
71502
Hii... Here is a nice tutorial which may help you in learning Port Programming in C http://bit.ly/23mSXs...
agarwal.ankit87
Offline Send Email
Nov 3, 2009
9:01 pm
71503
Hey all so yes basically the subject title gives it away really. Im just creating a multidimensional array made up of my own particle structure using visual...
Sam
glogic20
Offline Send Email
Nov 5, 2009
6:42 pm
71504
You have many options Particle *p = createParticle(); So to access to X and Y element you can access with index = y*Width + x Or you can use an unitary array...
a.geo
aquiles.geo
Offline Send Email
Nov 5, 2009
7:06 pm
71505
Can somebody explain me why nesting functions are not allowed in C? Regrads Sumant Now, send attachments up to 25MB with Yahoo! India Mail. Learn how....
sumant gupta
sumant_recj
Offline Send Email
Nov 5, 2009
9:30 pm
71506
I've just posted it at Code Project and it is an open source profiler. This is the url in case you are interested : ...
charfeddine.ahmed@...
charfeddine....
Offline Send Email
Nov 5, 2009
9:37 pm
71507
... Can you explain why that level of language abstraction would be needed or useful in writing OS kernals? If not, then I think you have your answer. But when...
Peter
peternilsson42
Offline Send Email
Nov 5, 2009
9:40 pm
71508
because the C philosophy maybe... but you can use a class hierarchy, or multiple source code files, and declare the required and general functions like...
a.geo
aquiles.geo
Offline Send Email
Nov 5, 2009
9:41 pm
71509
As I understand C, Functions must always be available to all functions equally. I assume this is what you are talking about?...
Benjamin Scott
benjamin_cai...
Offline Send Email
Nov 6, 2009
4:58 am
71510
Hi Nirav, Here is a nice tutorial on Win32 Application in C . Just found on net while surfing hope it will help you in learning what you want ...
agarwal.ankit87
Offline Send Email
Nov 8, 2009
9:08 pm
71511
Here is a nice tutorial in pdf format from where you can easily learn it . It is downloadable pdf file so that you can downlaod it on your computer ...
agarwal.ankit87
Offline Send Email
Nov 8, 2009
9:10 pm
71512
Hi All, I am very much excited on joining this group. This is my first query (hopes will over load the group in future :)) Question: long i = 2000L; why 'L'...
manglikalok
Offline Send Email
Nov 8, 2009
9:10 pm
71513
... It isn't in that instance. ... The conversion is done before the assignment. ... Think about leaving off L in... long secs_per_day = 24 * 60 * 60L; ...on a...
Peter
peternilsson42
Offline Send Email
Nov 9, 2009
1:08 am
Messages 71484 - 71513 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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