Overview of C Language Question and Answer
Overview of C Language Question and Answer
Overview of C Language
What is a token?
A C program consists of various tokens and a token is either a keyword, an
identifier, a constant, a string literal, or a symbol.
What is a preprocessor?
Preprocessor is a directive to the compiler to perform certain things before the
actual compilation process begins.
Once fun_ptr refers a function the same can be invoked using the pointer as
follows.
fun_ptr();
[Or]
(*fun_ptr)();