Last active
April 24, 2022 13:47
-
-
Save pineapplehunter/2ec9ac42cb22077967aa3d0dfb6b50a6 to your computer and use it in GitHub Desktop.
C言語ワークショップで使うハローワールドのコード
This file contains hidden or 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() { | |
| printf("Hello World!\n"); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment