Problem 2
To use cout statements you must include the __________ file in your program.
Problem 4
Preprocessor directives begin with a ______________.
Problem 7
\(978.65 \times 10^{12}\) would be written in \(\mathrm{E}\) notation as ___________.
Problem 8
The character constant 'A' requires _______ byte(s) of memory, whereas the string constant "A" requires ________ bvte(s).
Problem 10
If the variable letter has been defined as a char variable, which of the following are not valid assignment statements? A) letter \(=w\) B) letter = 'w' ; C) letter = "w" ;
Problem 23
Create detailed pseudocode for a program that determines distance traveled when given inputs of speed and time. Use variables named speed, time, and distance.