运行 ❯
获取您
自己
的网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> int main() { // Reserve 20 bytes of memory for a string char myString[20] = "Hello World!\0"; int memorySize = sizeof(myString); int stringSize; // Print the string and use %n to measure it printf("%s%n\n", myString, &stringSize); // Print the size of the string printf("Memory size: %d\n", memorySize); printf("String size: %d\n", stringSize); return 0; }
你好,世界!
内存大小:20
字符串大小:12