The source code of C program file is stored in a file with the ________ extension correct
answers .c
The decrement operator is a(n) ________ operator. correct answers unary
Compiler is a program that translates the source code into ______ code, which consists of
binary instructions correct answers object
C provides three looping mechanisms: the for loop , the while loop and the ___________.
correct answers Do-while
The C language was partly developed to resolve the more lengthy requirements of assembly
language correct answers True
fetch() reads a single character from the file and points to it. correct answers False
The __________ format specifier is used to denote a signed decimal integer correct answers
%d
Dennis Ritchie and Brian Kernighan rewrote most of UNIX using C++ in the early 1960's
correct answers False
The _____ of a variable is the part of the program in which the variable is defined and,
therefor accessible correct answers scope
________ is an example of how you can declare a string in C. correct answers char name
__________ is the language in which UNIX was developed and refined correct answers C
C can be described as a language that uses relatively short, isolated functions to break down
large, complex task into small and easily resolved subtasks correct answers True
The __________ scarf() format specifier is used to indicate that scanf() should interpret the
input value as a pointer correct answers %P
A variables data type determines the upper and lower limits of its range of values correct
answers True
When you represent character data in a program as a character constant, you enclose the
character in correct answers Single quotation marks
A(n) _______ is a group of characters, such as a name. correct answers string
Variables that are declared inside a function are called _______ variables. correct answers
Automatic
The word null is used to indicate that a function returns no data correct answers False