タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

cppに関するextendskickのブックマーク (1)

  • sprintf

    int sprintf ( char * str, const char * format, ... ); Composes a string with the same text that would be printed if format was used on printf, but instead of being printed, the content is stored as a C string in the buffer pointed by str. The size of the buffer should be large enough to contain the entire resulting string (see snprintf for a safer version). A terminating null character is automati

  • 1