/cc
Last active
September 26, 2022 06:53
Compiling hello_multithreading_world.c
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
$ cc -Wall -Wextra -Werror hello_multithreading_world.c -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ clang -Wall -Wextra -Werror hello_multithreading_world.c -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ 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