C Programming Question and Answers
69. | What is a program flowchart? |
---|---|
|
|
70. | What are the advantages and disadvantages of a heap? |
---|---|
| |
71. | Is it possible to create your own header files? |
---|---|
Yes, it is possible to create a customized header file. Just include in it the function prototypes that you want to use in your program, and use the #include directive followed by the name of your header file. | |
72. | What is the use of "# define" in C? |
---|---|
#define is a pre-processor directive which is used to define constant value. This constant can be any of the basic data types. | |