Using constants and their associated modifiers using gcc

前端 未结 3 443
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-24 00:01

I was not sure what to call these flags, but what I am referring to is:

#define TEST_DEF 50000U //<- the \"U\" here

Google searching when yo

3条回答
  •  余生分开走
    2021-01-24 00:39

    This is an unsigned literal (U is suffix). See: http://en.cppreference.com/w/cpp/language/integer_literal

提交回复
热议问题