#include <stdio.h> #include <limits.h> #include <string.h> int main() { char buf[100]; sprintf(buf, "%lld", LLONG_MAX); printf("%s\n", buf); memset(buf, 0, ...
確定! 回上一頁