What is '#' operator in C?

前端 未结 5 503
夕颜
夕颜 2020-12-11 12:19

Is there a \'#\' operator in C ?

If yes then in the code

enum {ALPS, ANDES, HIMALYAS};

what would the following return ?

5条回答
  •  臣服心动
    2020-12-11 12:53

    The sharp symbol in C is the prefix for the preprocessor directives.

    It is not an operator ...

提交回复
热议问题