Review Questions
You'll find answers to the review questions in Appendix A, “Answers to the Review Questions.”
1: | Determine which expressions are true and which are false.
|
2: | Construct an expression to express the following conditions:
|
3: | The following program has unnecessarily complex relational expressions as well as some outright errors. Simplify and correct it.
#include <stdio.h> int main(void) /* 1 */ { /* 2 */ int weight, height; /* weight in lbs, height in inches */ /* 4 */ scanf("%d, weight, height); /* 5 */ if (weight < 100) /* 6 */ if ... |
Get C Primer Plus, Fourth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.