mirror of
https://github.com/fanlumaster/googlepinyinime-rev.git
synced 2025-07-18 17:08:00 +08:00
13 lines
250 B
C++
13 lines
250 B
C++
#include <stdio.h>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
FILE* file = fopen("example.txt", "w");
|
|
if (file) {
|
|
fprintf(file, "Hello, World!\n");
|
|
fclose(file);
|
|
} else {
|
|
perror("Failed to open file");
|
|
}
|
|
return 0;
|
|
} |