usage of “\” in C?

前端 未结 3 1532
忘了有多久
忘了有多久 2021-01-26 10:46

I was looking over this code, but i was unable to figure out why the usage of \"\\\" after the && operator?

if ((*(u32*)(kaddr + 0x64) == *(u32*)(kad         


        
3条回答
  •  猫巷女王i
    2021-01-26 11:10

    The \ right before the end of the line glues the following line to the current. Since C normally ignores whitespace, this is mostly useful when declaring macros.

提交回复
热议问题