运行 ❯
获得您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> #include <stdlib.h> int main() { char str[] = "Today's temperature is 24 degrees"; int amount = atoi(&str[23]); printf("%d", amount); return 0; }
24