1.

What do you know about #pragma directive?

Answer»

#pragma is a preprocessor directive for turning on or off specific FUNCTIONALITIES. #pragma startup, #pragma EXIT, and #pragma WARN are its three types.

  • We can use #pragma startup to provide functions that are called when the script starts working.
  • #pragma exit ALLOWS US to specify functions that are executed when the code terminates.
  • #pragma warn tells the computer whether or not to suppress any warnings.


Discussion

No Comment Found