Which of the following statements is false?
(a) In general, as you study any programming language, if the language specification
says that doing something can lead to undefined behavior, avoid doing it to prevent
security vulnerabilities.
(b) The C standard specifies the exact behavior for every case in which incorrect
library-function arguments are passed to a library function.
(c) Undefined behaviors can occur when using printf with improperly formed
conversion specifications.
(d)None of the above.
Which statement is true?
a) Often, typedef is used to create synonyms for the basic data types.
b) Keyword typedef is used to create antonyms (or opposites) for the basic data types.
c) Names for structure types are typically defined with typedef to create longer type
names.
d) The first letter of each typedef name must be capitalized.