It works
printf("%s body\n",__PRETTY_FUNCTION__);
But this is not the case (Error Expected ')'):
printf(__PRETTY_FUNCTION__" body\n");
I cannot get the IDE to show me what it __PRETTY_FUNCTION__evaluates to determine why it does not work.
source
share