Created
December 26, 2017 03:33
-
-
Save achmizs/21f5e20fb0be90cdd4551f4184153cc5 to your computer and use it in GitHub Desktop.
Hello, 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
#include <stdio.h> | |
main( ) | |
{ | |
printf("hello, world\n"); | |
} |
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 <iostream.h> | |
main() | |
{ | |
cout << "Hello World!" << endl; | |
return 0; | |
} |
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
println("Hello, world!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment