FeedBack Form

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

C Language INTERVIEW QUESTION & ANSWERS

Languages
91. What is difference between function overloading and operator overloading?
  A function is overloaded when same name is given to different function.While overloading a function, the return type of the functions need to be the same.
Your Name Your Email-ID
Your Answer
 
92. What is getche() function?
  It returns a character just entered from the standard input unit. The entered character is echoed (displayed) to the computer screen. It reads a single character the moment it is typed without waiting for the Enter key to be hit.
Your Name Your Email-ID
Your Answer
 
93. What is getch() function?
  It returns a character just entered from the standard input unit. The entered character is not echoed on the screen. It reads a single character the moment it is typed without waiting for the Enter key to be hit.
Your Name Your Email-ID
Your Answer
 
94. What is putchar() function?
  It prints the character constant or the character variable to the standard output device. The function putchar( ) has the following form :
putchar (var name)
Your Name Your Email-ID
Your Answer
 
95. What is an arrays?
  Arrays can be defined as a collection of variables of the same type that are referred through a common name.
Your Name Your Email-ID
Your Answer