Why does the following line of code generate error as " pasting / and / doesnot generate a valid preprocessing token"? Can someone please help
#define comment /##/
int main()
{
comment printf("hello");
return 0;
}
#define comment /##/
int main()
{
comment printf("hello");
return 0;
}