Week 1 - Basics Flashcards
Is C imperative or declarative?
Imperative
What is the difference between imperative and declarative programming languages?
Imperative describes computation in terms of statements that change a program state, e.g. C.
Declarative describes computation in terms of what is should accomplish, e.g. SQL.
Is C object-oriented or procedural/functional?
Procedural/functional
Is C compiled or interpreted?
Compiled
C is statically, weakly typed - what does this mean?
Statically typed - types are checked before runtime (must declare variables before you use them).
Weakly typed - supports implicit type conversions.
How do you declare a comment in C?
/* this is a comment */
What does it mean when the main() function returns 0?
Success - everything else normally means failure.
What is the statement #include <stdio.h> called, what part is the header file, and what is it used for?</stdio.h>
A compiler directive - used for including a library (in this case I/O with stdio.h, which is the header file)
What header file is needed for standard I/O (input/output)?
stdio.h
What is the process of turning a .c file into an executable program?
Source (.c or .h) compiles to object (.o or .obj), which is linked to executable (.exe)
What is the standard compile?
gcc -ansi -c myProgram.c -o myProgram.o
(note -ansi not necessarily required)
What is the standard link?
gcc myProgram.o -o myProgram
How can several object files be linked together?
gcc myProgram.o mySubroutines.o -o myProgram
What do make and makefiles do?
Utility for building executables and libraries from source code (compiling). They define how to compile and link files to build an executable. They only regenerate intermediate files when necessary.
What is the header file for using mathematical functions (e.g. sqrt)?
math.h
What does linking/loading do?
Linking combines object files and libraries into a single executable file, so performs other tasks, such as generating symbol tables that map the program’s symbols to their addresses in memory. Loading loads the executable file into memory and prepares it for execution. It allocates memory for the program’s code, data, and stack. The loader also performs tasks such as resolving any dynamic links to shared libraries and initializing the program’s global variables.
Often invoked by GCC itself:
gcc circle.o radius.o -o circle -lm
How do you include a library when linking/loading?
-l for a library, e.g. -lm for the maths library.
How do you compile and link in one go?
Use two files circle.c and radius.c, with main() in circle.c which uses the maths library.
gcc circle.c radius.c -o circle -lm
What are the basic non-decimal data types in C, their sizes, and their range?
Unsigned char - 1 byte -> 0 to 255
Char - 1 byte -> -128 to 127
Unsigned short int -> 2 bytes - 0 to 65,535
Short int - 2 bytes -> -32,768 to 32,767
Int - 4 bytes -> -2,147,483,648 to 2,147,483,647
Long int - 8 bytes -> +/- 9 x 10^18
What are the decimal data types in C, their sizes, their smallest and largest values and their precision?
Float - largest value is +/- 3.4 x 10^38, smallest is +/- 3.4 x 10^-38, precision is 6 digits
Double - largest value is +/- 1.07 x 10^308, smallest is +/- 1.07 x 10^-308, precision is 15 digits
Long double - 16 bytes -> largest value is +/- 3.4 x 10^4932, smallest is +/- 3.4 x 10^-4932, precision is 18 digits
What is the header file needed to include minimum and maximum values of data types?
limits.h
What is the header file needed to include the function sizeof()?
stddef.h
What is the null character in C?
nullCharacter = ‘\0’
How would you print the char variable ‘myChar’?
printf(“%c”, myChar)
How do you print an int stored in variable myInt in C?
printf(“%d”, myInt)
How do you print a float/double/long double variable stored in f in C?
printf(“%f”, f)
How do you write an if-then-else statement in C?
if (<condition>)
{</condition>
<statement>
}
else if (<condition>)
{
<statement>
}
else
{
<statement>
}
</statement></statement></condition></statement>
There are no explicit boolean datatypes in ANSI C. What is done instead?
Conditions are evaluated to int values -> 0 is false, anything else is true.
What do the symbols || and && mean?
‘or’ and ‘and’
How do you write a for loop in C?
for (<initialisation>; <condition>; <increment>)
{...}</increment></condition></initialisation>
In a for loop in C, what do break and continue do?
Break jumps to the first statement after the end of the loop.
Continue jumps to the start of the next iteration.
How do you write a while and a do while loop in C, and what is the difference between them?
while (<condition>)
{...}</condition>
do
{…}
while (<condition>);</condition>
A do while loop always runs the loop once; a while loop only runs if the condition is initially met.