C Flashcards
What are C programs are compiled into?
Object code.
What is gcc?
The GNU Compiler Collection is an open source C compiler.
What is the default executable name produced by gcc?
a.out
How can you specify the executable name produced by gcc?
Using the -o switch.
What does cpp stand for?
cpp is the C preprocessor.
When does cpp examine source code, relative to compilation?
Source code is examined by cpp prior to compilation.
cpp must be called separately from gcc.
False, gcc calls cpp automatically.
What does the following line do?
cpp hello.c
By default, independent invocations of cpp prints the rewritten source code to the screen.
How are cpp directives distinguished from regular C code?
A leading # symbol.
Macros are pure textual substitutions, typically used for defining what 2 things?
Constants, and very simple functions in compact form.
What would occur if gcc encountered a #include directive?
It would produce an invalid error syntax.
In what way are standard header files included differently than user defined header files?
Using <file>, instead of “path”.
Why is no additional path information included with standard header file names?
Because these are located in pre-defined folders that cpp and the compiler will always search.
Can operating systems or platforms define their own standard header files?
Yes.
What about the C compilation process makes header files necessary?
C compilation is a line by line process that will generate errors if a not previously defined identifier is encountered.
Source files are compiled interdependently.
False, they are compiled independently, which further reinforces the need for header files.
Which compiler error is commonly associated with the omission of a header file?
“Symbol could not be resolved.”
The C library is big, relative to other languages.
False.
%i can be used in place of %d to specify an integer.
True.
Which format specifier is used for pointers?
%p
What should be used in place of printf() for displaying error/warnings?
fprintf(stderr, message, var_list);
Why should fprintf() be used in place of printf() for displaying errors?
Because fprintf() allows specification of output stream, and stderr is unbuffered (usually prints immediately).
NULL is a keyword in C.
False - NULL is a macro defined in several standard C headers.
How can NULL be defined as a macro?
#define NULL ((void *)0)
Are C functions pass by value, reference, or both?
Pass by value.
If int *p1 = arr; int *p2 = arr + 4; and and ints are 4 bytes, what does int x = (char*)p2 - (char*)p1 equal?
16
Will the following line compile, if p is of type (char*) and stdio.h is included?
printf(p);
Yes, but a warning will be generated.
If char *p = “hi”; what does printf(p + 1); do?
Outputs “i” to standard output.
Which ASCII character proceeds each string in C?
The null character ‘\0’, which is ASCII value 0. It isn’t printable.
If char c = ‘\0’; what does (c == NULL) return?
Compiler issues a warning, as you’d be comparing a character with a pointer.
The following is a valid way of obtaining the number of elements in arr:
int arr[] = {1, 2, 3, 4};
int size = sizeof(arr)/sizeof(arr[0]);
True.
Where does the following code produce a compile error?
int a = 1;
void *p = (int *)&a;
printf(“%d”, *p);
Line 3, because a void pointer cannot be dereferenced.
If p is of type (int *), what’s the difference between the following two bits of code?
++*p
*++p
The first adds 1 to the integer p points to, the second returns the number held by the location adjacent to p.
Declare (but don’t initialize) two integer pointers in 1 line.
int *p1, *p2;
What does the following print?
int array[5][5];
printf(“%d”, ((array == *array) && (*array == array[0])));
1
What’s the difference between big endian and little endian?
In little endian, the least significant value is stored first, whereas in big endian, the most significant value is stored first.
Faster access to non-local variables is achieved using an array of pointers to activation records, called a..?
Activation tree.
What does the following declare?
int * f[ ] ()
An array of functions returning pointers to integers.
A reference can never be NULL.
True.
What does the following declare?
int (*f())[ ]
int (*f())[ ] declares a function returning a pointer to an array of integers.