C programing

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

T

A compiler translates source code into machine language.

2
New cards

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) .

3
New cards

F

All C variables must start with an alphabetic character (or underscore _). 

4
New cards

T

Assume that z=(x==y)?1:0. If x=3 and y=3, then z=1.

5
New cards

F

Given x=5, y=x+++1 sets y to 7

6
New cards

T

The declared variables in a function are local variables.

7
New cards

F

The for-loop statement cannot be used for an infinite loop, but a while statement can. 

8
New cards

F

The break statement is always required in the switch selection statement. 

9
New cards

F

A program can have more than one main function.

10
New cards

F

The meaning of #include <stdio.h> is to copy the source code into the stdio.h file.