Null Directive #

This page was translated by a robot.

The null directive is a line with only a #on it. This directive has no effect, it does nothing. It only exists for reasons of compatibility with old files, where such lines appeared from time to time. Although the directive has no effect, AVOID it due to typographical confusion.

int main(){
  // The following line has no effect
  #
  // Not even a compiler warning
  return 0;
}