Answers for "define macros"

C++
3

cpp macro

#define PRINT(x) std::cout << x << std::endl
Posted by: Guest on July-07-2020
0

macros

A macro in computer science is a rule or pattern that specifies how a certain input should be mapped to a replacement output.
Posted by: Guest on September-09-2021
0

Macros

A macro means that certain strings in the code will be changed 
before the compilation
  In C++, macros are defined using the #define keyword.
Posted by: Guest on April-12-2021

Browse Popular Code Answers by Language