C Languages Interview Questions

41. What is the difference between the =symbol and ==symbol?
 
  • The =symbol is often used in mathematical operations. It is used to assign a value to a given variable.
  • On the other hand, the ==symbol, also known as "equal to" or "equivalent to", is relational operator that is used to compare two values.
 
Your Name Your Email-ID
Your Answer
42. What is mean by testing?
  Testing is the process of executing the program with sample or tested data.
 
Your Name Your Email-ID
Your Answer
43. What is meant by recursive function?
  If a function calls itself again and again, then that function is called Recursive function.
 
Your Name Your Email-ID
Your Answer
44. What is a global variable?
 
  • The global variable is a variable that is declared outside of all the functions.
  • The global variable is stored in memory, the default value is zero.
  • Scope of this variable is available in all the functions.
 
Your Name Your Email-ID
Your Answer
123456789101112


131415 Page 11 of 15