Function Macros improve your C programming

preview_player
Показать описание
In this beginner-friendly coding lesson, you will learn all there is to know about Function-like Macros in C.

Function Macros are tiny "functions" (they're not functions, but they are used the same), and you will learn how to utilize them for better looking, and more performant code with great readability. You will also improve your knowledge with regard to the C preprocessor and regular constant definitions, etc.

In addition to all this, you will also learn about the conditional ternary statements, "ternaries".

Happy coding!
Рекомендации по теме
Комментарии
Автор

If the sayhello macro is called multiple times, will that expand to multiple copies of the format string in memory?

SlideRSB