C Programming Flashcards

1
Q

/…../

A

Single-line comment in C programming

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

/*
……
*/

A

Multi-line comment in C programming

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

/*
* ……
* …..
*/

A

Multi-line comment in C programming

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

The main() Function

A

The main() function is the starting point of the program.

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

Include Files

A

include <stdio.h> Inserts the contents of a file (in this case, a file named stdio.h) into the current file. The purpose of these files</stdio.h>

(known as include files or header files) is to tell the compiler about the existence of external functions which the source code will make use of.

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

Whitespace

A

The C language generally ignores whitespace (i.e., spaces, blank lines, tabs, etc.)

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

The Preprocessor

A

When a line in a C program begins with the octothorpe character ‘#’, it indicates that this line is a
preprocessor directive. The preprocessor is actually a program that runs before the C compiler
itself. It serves to perform text substitutions on the source code prior to the actual compilation.

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

The #define Directive

A

The simplest form of preprocessor directive is the #define statement. The #define statement initiates substitution. And #define directive can also perform rudimentary macro substitutions.

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

define HALFOF(x) x/2

What is HALFOF(x)?

void main(void) {
printf(“Half of 10 is %d\n”, HALFOF(10));
}

A

HALFOF(x) = 10

void main(void) {
printf(“Half of 10 is %d\n”, 10/2);
}

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