If you are using this tag, it is a good indication that you are asking a question that does not belong here.
1
vote
2answers
79 views
C++ Primer Page 289
In page 289 of C++ Primer, there is a code fragment like this below.
int ival;
// read cin and test only for EOF; loop is executed even if there are other IO failures
while (cin >> ival, ...
1
vote
0answers
206 views
C++ Primer 4th edition, twelfth printing - typo on page 35
I'm afraid page 35 was changed during the different printings of the 4th edition! But this looks obviously wrong:
32-bit word
736424 0 0 0 1 1 0 1 1
736425 0 1 1 1 0 0 0 1
736426 0 1 1 0 0 1 0 0
...
0
votes
1answer
344 views
Why am I getting this error in my Primer3/eprimer3 Mac OSX build?
I'm getting this error on my mac osx build.
Primer3/eprimer3 issue:
Error: thermodynamic approach chosen, but path to thermodynamic parameters not specified
From:
...
-2
votes
1answer
231 views
C++ while loop primer fin fout
I am doing hw. The assignment is to take input from a file that contains this:
Jennifer Smith# 9.5 8.3 7.8 8.1 9.4
Joe Ooil# 7.4 4.5 6.9 4.1 2.3
Paulette Jones# 1.2 0.2 0.0 3.1 ...
6
votes
5answers
1k views
PHP: global variable alternatives?
I'm working on a PHP project, and from time to time between things I read online and things I see in forums, etc. I keep reading that you shouldn't use php globals. Making sure that I don't get that ...
3
votes
3answers
632 views
PDF file generation in Perl, is there a primer to get one started
I'm needing to generate some pdf reports dynamically from a Perl web app. I'm thinking PDF::API2::Simple, but I know nothing about PDF standards/technicalities. Is there some kind of primer to get ...
7
votes
8answers
330 views
C++, Classes, Const, and strange syntax
I was re-reading c++ primer(4th ed.) today - the section on member functions and const references etc, and I came up with this wierd little program:
using std::cout;
using std::endl;
class ...
0
votes
3answers
772 views
C++: How to make a program read words instead of character? And how to make the program stop reading when entering a “lone” character?
I need help with Excercise 7 in Chapter 6 of Stephen Pratas "C++ Primer Plus 5th Edition".
The excercise is to write a program that reads input from the user as "words" and count the vowels and ...
8
votes
2answers
3k views
How should I undo damage caused by reading “C++ Primer Plus”? [closed]
Unfortunately, I failed to do the proper research prior to reading Stephen Prata's C++ Primer Plus. After reading Amazon reviews I concluded (incorrectly) that C++ Primer Plus was a great introductory ...
3
votes
6answers
529 views
I purchased Delphi 2010 and TMS Components and need help with documentation
I learnt procedural pascal on a Prime 26 years ago at university, and since graduating have worked with a database language called DataFlex on Unix servers. My organisation needs software solutions ...
1
vote
4answers
494 views
Delphi printing primer
I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I never programmed ...
1
vote
3answers
975 views
Can you recommend a good primer for writing flash games?
I wrote a simple asteroids clone prototype in the PopCap framework, and want to port it to flash. I am not looking for specifics but rather a good primer for writing games in flash. I have searched on ...