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. ... ...
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:...
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@...
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 ...
... 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...
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...
The problem is scanf function. It is actually reading only the world hello. Try using gets function Jaime...
Jaime A Stuardo Baham...
jstuardo@...
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...
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...
... 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...
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...
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 ...
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...
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...
... 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; ...
... 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...
... 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...
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...
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...
... 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...
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...
#include <iostream> using namespace std;// //import all std identifiers #pragma argsused //stops unused parameter warning in next function call when compiling ...
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
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
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
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
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...