1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
T
A compiler translates source code into machine language.
F
C language is a sequential (sequencial x, procedual o) language, so it has advantages in code reuse and Debugging (disadvantage/difficulties in debugging and maintenance o) .
F
All C variables must start with an alphabetic character (or underscore _).
T
Assume that z=(x==y)?1:0. If x=3 and y=3, then z=1.
F
Given x=5, y=x+++1 sets y to 7
T
The declared variables in a function are local variables.
F
The for-loop statement cannot be used for an infinite loop, but a while statement can.
F
The break statement is always required in the switch selection statement.
F
A program can have more than one main function.
F
The meaning of #include <stdio.h> is to copy the source code into the stdio.h file.