Overview Flashcards

0
Q

What is ANSI

A

American National Standards Institute

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

Who created C?

A

Dennis Ritchie at Bell Labs 1972 to design UNIX operating system.

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

What are the steps in the Program Development Cycle?

A

Use an editor to create a disk file containing source code. Compile source code into an object file. Link compiled code to create an executable file. Run and check the code to see if it performs as planned.

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

What is source code?

A

A series of statements or commands that instruct the computer to perform a task.
The code programmers create and edit.

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

Where is source code developed?

A

An editor like NotePad that works in ASCII.

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

What is ASCII?

A

American Standard Code for Information Interchange.

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

What is the file extension for C and for Objective-C?

A

.c for C

.m for Objective-C

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

What does compiling do?

A

A compiler translates source code to binary machine language called object code. The compiler produces a disk file called an object file.

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

What is the command to compile C source code in the Gnu Step Shell compiler?

A

gcc filename.c -o filename

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

What is the file called and what is its name extension once it is compiled?

A

A compiled file is an object file with a .obj extension such as filename.obj filename.o for UNIX.

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

What step follows compiling?

A

Linking

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

What does linking do?

A

Linking is the last step in making a program ready to run. It creates executable code. Linking connects the compiled object code to a predefined function library of compiled object code. Linking is often automatically done at the compiling stage.

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

What is a library function?

A

A library function is ANSI C compiled code that performs frequently needed tasks like displaying information on a screen or reading data from disk files.

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

How do I run an executable file?

A

Enter the filename at the system prompt.

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

What is the final step in C programming?

A

Run the program and check the results. If they are different than expected, identify what caused the problem, correct it in source code, recompile source code into object code and then relink object code to create a new executable file.

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

What is the file extension of a compiled and linked file?

A

The file extension of a compiled and linked file is .exe as in filename.exe

16
Q

What is the basic format of a C program source code program?

A
#include
int main(void)
{
    printf("Hello, World!\n");
    return 0;
}
17
Q

What is the path on the PC in Gnu Step Shell to the program files?

A

cd /c/users/Conrad/desktop/programs

18
Q

What is the code to run a file in Gnu Step Shell?

A

./filename.exe

19
Q

Describe the main function.

A

Required in every executable C program.

main (void)

20
Q

What is an #include directive?

A

The #include directive instructs the C compiler to add the contents of an include file into a program during compilation.

21
Q

What is an #include file?

A

An #include file is a disk file that can be used by a program or the compiler. Header files are supplied with the compiler.

22
Q

What is the variable directive?

A

A name assigned to a memory location used to store a certain type of information.

23
Q

What is a function prototype?

A

A function prototype provides the C compiler with the name and arguments of a program’s function.

24
Q

How do you insert comments?

A
for any length between markers:
/* comment */
 for single line
// comment 

Don’t nest comments

25
Q

What are the parameters for program statements?

A

One per line (generally)
End with semicolon

Form
printf(“text\n”);
scanf(“%d”, &val1);
printf(“text %d\n”, val1);