运行 ❯
获取您的
拥有
网站
×
更改页面方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> int main() { int x = 5; int y = 5; printf("%d", x == y); // returns 1 (true) because 5 is equal to 5 return 0; }
1