Macro expansion is done by the C preprocessor at the beginning of compilation.

The C preprocessor is named cpp and usually can be invoked from command line.

You can also define macros whose use looks like a function call. These are called function-like macros. To define a function-like macro, you use the same ‘#define’ directive, but you put a pair of parentheses immediately after the macro name.
SOURCE

Note that when defining a function-like macro, parentheses must come immediately after the macro name, that is there must not be any spaces in between, otherwise, the program won't compile. But when calling a function-like macro, the restriction is relaxed.

You can read more about function-like macros in C or C++ programs here.

相关文章:

  • 2022-12-23
  • 2019-05-26
  • 2022-01-02
  • 2021-09-28
  • 2022-12-23
猜你喜欢
  • 2022-02-12
  • 2022-12-23
  • 2021-09-01
  • 2021-08-10
  • 2021-12-09
  • 2021-09-15
  • 2021-07-24
相关资源
相似解决方案