C Languages Interview Questions
53. | How many bytes are occupied by the int, char, float, long int and double? |
---|---|
54. | What is the difference between exit() and return() in C? |
---|---|
|
|
55. | How do you open the file? |
---|---|
|
|
56. | Basically, what does the header files contain? |
---|---|
The header file contains declarations of library functions (prototypes of library functions) and useful enumerations and macros for the convenience of the programmers. | |