#include <stdio.h>
#define get(s) #s //***
int main()
{
char str[] = get(hello); //***
printf("%s\n", str);
return 0;
}
Help me to understand the two lines with the //***
comment?
Can anyone describe what's happening in the #define
?