What is pragma and what for it is used?
1 Like
pragma controls the action about part of the whether to execute code or not.
#ifdef TEST_CODE
some code
#endif
if TEST_CODE is defined then above code is enabled.