What do you know about Macros in C language?
Anónimo
Macros are pre-processor search and replace, it can be used for definitions (#define Max 300), or to replace function calls by the function body itself (#define Add(a,b) (a+b)). It save overhead caused by function calls, but it uses more memory space.