This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
int i; | |
for (i = 0; i < 10; i++) // 10回繰り返す | |
{ | |
printf("Hello, world!\n"); // 文字列を出力する | |
} | |
return 0; // プログラムが問題なく終了したことをOSに知らせる |
NewerOlder