Intro to C Programming Flashcards

1
Q

What do you call a line space without code?

A

Whitespace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what part of a code is this?

#include <studio.h>

A

Preprocessor or preprocessing command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what part of a code is this?

int main (void)

A

Main function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

symbols used to open and close a function

A

{ curly brackets/braces }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In coding, what is within the opening parenthesis and semicolon

A

Argument

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

These are the locations in memory where values can be stored for use by a program (containers)

A

Variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

These are series of characters consisting of letters, digits, and underscores

A

Identifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

It is a procedure to solve a problem in terms of actions and order

A

Algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly