Generation

generate functionSat, 10 Jun 2023

用C写一个计数器

#include <stdio.h> int main() { int x = 0; while (1) { x = x + 1; printf("%d\n", x); } return 0; }

Want to kickstart your project?Use the new AI Studio to create your code