C Programming Question and Answers

53. What is translation unit?
 
  • A translation unit is a set of files seen by the compiler.
  • It includes the source code under consideration and files that are included such as header files and other disk files contain C code.
 
Your Name Your Email-ID
Your Answer
54. Can we make our own header files?
  Yes. You can make your own header files and put the declarations of functions and related constants and macros developed by you.
 
Your Name Your Email-ID
Your Answer
55. What are multidimensional arrays?
  Multidimensional arrays are capable of storing data in a two or more dimensional structure.
 
Your Name Your Email-ID
Your Answer
56. What are the key features or characteristics of C languages?
  The characteristics of C language are
  • Reliability
  • Portability
  • Flexibility
  • Interactivity
  • Modularity
  • Efficiency and Effectiveness
 
Your Name Your Email-ID
Your Answer