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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 27330 - 27359 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27330
suggested to take a look at this book: C++ Unleashed by:Jesse Liberty attached here is the cover of the book there might be other books.anyone? irvin e. ... ...
Irvin E.
air_vin
Offline Send Email
Apr 1, 2003
10:02 am
27331
From: bijoy [mailto:bijoy@...] ... From http://cm.bell-labs.com/cm/cs/who/dmr/chist.html "BCPL, B and C differ syntactically in many...
Peter Nilsson
peternilsson42
Offline Send Email
Apr 1, 2003
10:30 am
27332
c++ complete reference. Far better than any beginners book, but probably appropriate for beginners alos. All you'll ever need for ansi c++ info. ... From:...
Matthew Green
flammybodger
Offline Send Email
Apr 1, 2003
11:39 am
27333
C++ by Robert Lafore is the best book to start with. Later you can switch onto " A Hands on Approach to C++" by Eric Nagler. "Thinking in C++" by Bruze Eckel...
Nicholas Freddy
nicholas@...
Send Email
Apr 1, 2003
1:06 pm
27334
Scott Meyers: Effective C++ ... From: Matthew Green [mailto:matthew.green5@...] Sent: Tuesday, April 01, 2003 6:47 AM To: c-prog@yahoogroups.com ...
Wei.Jin@...
weijinubsw
Offline Send Email
Apr 1, 2003
3:10 pm
27335
... with a .h indicating function declarations. ... You should have also been given a .lib that you can link against your executable. If you don't have a...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 1, 2003
4:36 pm
27336
Hi,, Im new in C, and i have a problem. When I do a prinf("%s",string); where string is a char *string or string[20], it only shows me the string until de...
fernando_requena
fernando_req...
Offline Send Email
Apr 1, 2003
4:52 pm
27337
The problem is scanf function. It is actually reading only the world hello. Try using gets function Jaime...
Jaime A Stuardo Baham...
jstuardo@...
Send Email
Apr 1, 2003
5:01 pm
27338
It is not printf(). scanf() will stop at white space, this is documented. To read the entire line, use gets() or fgets(). fgets() is better as you can...
Shyan Lam
sflam108
Offline Send Email
Apr 1, 2003
5:23 pm
27339
hi is there any pthread function which tells any hanges child threads in the program or tells busy threads... please tell me some links which contains examples...
kamran shahid
khan_bhai2000
Offline Send Email
Apr 1, 2003
5:35 pm
27340
... Never ever recommend or use gets(). It is seriously flawed. -- Peter...
Peter Nilsson
peternilsson42
Offline Send Email
Apr 1, 2003
10:58 pm
27341
... Not generally true. scanf("%s", array) will stop at white space, but you can invoke scanf in a manner that reads whitespace too. ... There is never a...
Peter Nilsson
peternilsson42
Offline Send Email
Apr 1, 2003
10:58 pm
27342
Hi, Try scanf("%19c\n", string); if you use string[20]. (19 chars and '\0'); Instead use directly scanf, use: fgets(string,20,stdin); If you will break string...
Jose Arthur B. Villan...
azlev
Offline Send Email
Apr 1, 2003
11:36 pm
27343
Peter, After you have said that, you got to tell us why. Why is gets() is seriously flawed? You just did and open-ended statement just like as if I said: All ...
tom_harrold
jrndgrujf
Offline Send Email
Apr 2, 2003
12:06 am
27344
Jose Arthur B. Villanova ... I doubt that does what you think it does. It will read 19 characters, irrespective of whether they are newlines or not. In other...
Peter Nilsson
peternilsson42
Offline Send Email
Apr 2, 2003
12:23 am
27345
hello guyz, in C++ we are required to give a number for input. from 1-50 and every input is to be multiplied by 5 incrementing by 5 here goes a sample: i...
Irvin E.
air_vin
Offline Send Email
Apr 2, 2003
12:26 am
27346
... Use this (don't forget the appropriate #include files): cin>>number; for(int i=5;i<=How_many_times_you_wish_to_increment_it*5;i+=5) cout<<number*i; ...
Laurian Angelescu
angelescu_la...
Offline Send Email
Apr 2, 2003
12:37 am
27347
... You can't unless you send periodic information from one thread to another through a pipe or some data structure that only the thread in question writes to...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2003
12:56 am
27348
... Enter 20 characters into the buffer and set the buffer to only hold 5-10 bytes. This will more than likely cause a segmentation fault. This is also...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2003
1:04 am
27349
Excellent response Mr. Hruska, I commend you for writing your point but I wonder what Peter has to say. As my memory serves, scanf(), has some flawed and I was...
tom_harrold
jrndgrujf
Offline Send Email
Apr 2, 2003
3:19 am
27350
Dear all, Can u guide me how can i use my .dll file in the Linux environment? Waiting for your reply. Ritesh...
ritesh519
Offline Send Email
Apr 2, 2003
4:51 am
27351
hello guyz, in C++ we are required to give a number for input. from 1-50 and every input is to be multiplied by 5 incrementing by 5 here goes a sample: i...
Irvin E.
air_vin
Offline Send Email
Apr 2, 2003
4:57 am
27352
... no it's not the same thing. gets() is seriously flawed. Ford only stands for Fix or repair daily, they're only flawed once a day. ... Victor A. Wagner...
Victor A. Wagner, Jr.
vawjr1943
Offline Send Email
Apr 2, 2003
5:01 am
27353
Hello, I need to be able to sort a vector of my objects by one of the string members without regard to case. I don't know how to write the predicate. I've...
Jack York
ptree_2000
Offline Send Email
Apr 2, 2003
5:12 am
27354
#include <iostream> using namespace std;// //import all std identifiers #pragma argsused //stops unused parameter warning in next function call when compiling ...
Philip Bellamy
pbellamy2
Offline Send Email
Apr 2, 2003
5:51 am
27355
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the c-prog group. File : /RGame4.exe ...
c-prog@yahoogroups.com
Send Email
Apr 2, 2003
7:29 am
27356
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the c-prog group. File : /RGAME5.EXE ...
c-prog@yahoogroups.com
Send Email
Apr 2, 2003
7:30 am
27357
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the c-prog group. File : /RGAME6.EXE ...
c-prog@yahoogroups.com
Send Email
Apr 2, 2003
7:32 am
27358
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the c-prog group. File : /RPuzzle5.exe ...
c-prog@yahoogroups.com
Send Email
Apr 2, 2003
7:34 am
27359
I have pasted improperly working code below. I am trying to spawn a process and inject a DLL into it by creating a remote thread that takes LoadLibraryW as its...
Kaushik Srenevasan
kaushiksrene...
Offline Send Email
Apr 2, 2003
9:16 am
Messages 27330 - 27359 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