study/main.c

9 lines
118 B
C
Raw Normal View History

2023-10-22 13:23:42 +08:00
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
puts("Hello, World!");
return 0;
}