FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

C Language INTERVIEW QUESTION & ANSWERS

Languages
11. What is C token?
  The smallest individual units of a C program are known as tokens.
Your Name Your Email-ID
Your Answer
 
12. List the different types of C tokens?
 
  • Constants
  • Identifiers
  • Keywords
  • Operators
  • Special symbols
  • Strings
Your Name Your Email-ID
Your Answer
 
13. What is a string?
  A string is a sequence of characters ending with NUL. It can be treated as a one–dimensional array of characters terminated by a NUL character.
Your Name Your Email-ID
Your Answer
 
14. What are qualifiers?
  Qualifiers or modifiers are identifiers that may precede the scalar data types (except float) to specify the number of bits used for representing the respective type of data in memory. The qualifiers in C are short, long, signed, and unsigned.
Your Name Your Email-ID
Your Answer
 
15. What is a function?
  A function is a set of statements to perform a specific task.
Your Name Your Email-ID
Your Answer