-
-
Save khoa-io/283a94e45b57c7f47c103ac0bb50637f to your computer and use it in GitHub Desktop.
Compiling hello_multithreading_world.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
$ cc -Wall -Wextra -Werror hello_multithreading_world.c -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ clang -Wall -Wextra -Werror hello_multithreading_world.c -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ gcc -Wall -Wextra -Werror hello_multithreading_world.c -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment