运行 ❯
获取
你自己的
网站
×
更改方向
更改主题,浅色/深色
前往 Spaces
#include <stdio.h> int main() { int myNum = 15; int myOtherNum = 23; // Assign the value of myOtherNum (23) to myNum myNum = myOtherNum; // myNum is now 23, instead of 15 printf("%d", myNum); return 0; }
23