(All Chapters included) (All Chapters included)
The %e conversion specifier displays ________ values - answers-floating-point
Which function does not use either the standard input stream or the standard output stream? -
answers-gettime
strtok does not - answers-tokenize the entire a string when it's called
Assuming that string1 = "hello" and string2 = "hello world", Which of the following returns 0? -
answers-strncmp(string1, string2, 5);
Pointers may be assigned which of the following? - answers-both (b) and (c
Which of the following would output a "%" sign when used in the format control string of the
printf statement? - answers-%%
When a compiler encounters a function parameter for a single-subscripted array of the form int
a[], it converts the parameter to - answers-int * a
The ___________ function allows characters of one part of a string to be copied into another
part of the string. - answers-memmove
A function that modifies an array by using pointer arithmetic to process every val-ue should
have a parameter that is - answers-a nonconstant pointer to nonconstant data
1