What are ‘macro functions’ in C?

In C, the #define preprocessor command has two different forms. One form replaces tokens. Another form replaces function calls.

Examples of the difference:

// A simple replacement macro:
#define FOO 3
// A function macro:
#define INCR(x) (x++)
Tagged #macros, #c, #programming.

Similar posts

More by Jim

Want to build a fantastic product using LLMs? I work at Granola where we're building the future IDE for knowledge work. Come and work with us! Read more or get in touch!

This page copyright James Fisher 2016. Content is not associated with my employer. Found an error? Edit this page.