GCC Wikia
Advertisement

このページを編集する際は,編集に関する方針に従ってください.[]

概要[]

引数[]

  • x
  • y

実装[]

 321 /* Returns the least number N such that N * Y >= X.  */
322 #define CEIL(x,y) (((x) + (y) - 1) / (y))


リンク元

Advertisement