1.

What Is The Use Of 'auto' Keyword ?

Answer»
  • The auto keyword declares a local VARIABLE whose scope remains within the block of code, it is a variable with the local scope.
  • When we declare a variable with the auto keyword it specify that it BELONGS to an auto STORAGE class.
  • These variables are visible only within the bolck in which they are DECLARED.
  • These types of variables are not initialised automatically INSTEAD need to be initialised xplicitly.



Discussion

No Comment Found