void _start() { __asm__("mov $60, %eax\n" // syscall: exit "xor %edi, %edi\n" // status: 0 "syscall"); }
constexpr int n = 5 + 4; // ??? typeof(n) arr[n]; // ??? [[maybe_unused]] auto* ptr = foo(); // ??? ptr = nullptr; // ???
int read(int fd, void *buf, size_t count); int write(int fd, const void *buf, size_t count); int main() { int a = ???; // 读入 a int b = ???; // 读入 b int sum = a + b; // 输出 sum ??? }