"\" at the end of a line in C / C ++

Original author: TopCoders
  • Transfer
Will your editor / IDE show that “a ++;” in this C / C ++ code is part of the comment? And this option?
int a=1;
//some comment \
a++;
printf("%d\n",a);



int a=1;
//some comment ??/
a++;
printf("%d\n",a);

Also popular now: