📜 ⬆️ ⬇️

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

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


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

')

Source: https://habr.com/ru/post/86452/


All Articles