Level 79
Level 81
6 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
(\)
the Macro Continuation Operator
the Macro Continuation Operator
#define message_for(a, b) \ printf(#a " and " #b ": We love you!\n")
(#)
the Stringize Operator
the Stringize Operator
#include <stdio.h> #define message_for(a, b) \ printf(#a " and " #b ": We love you!\n") int main(void) { message_for(Carole, Debra); return 0; }
(##)
the Token Pasting Operator
the Defined() Operator
used in constant expressions to determine if an identifier is defined using #define.