Created
October 5, 2015 20:47
-
-
Save otobrglez/57eb1afce058b9e3a7a1 to your computer and use it in GitHub Desktop.
Playing with static and const in 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
| run: test | |
| ./test | |
| test: | |
| clang -ansi test.c -o test | |
| clean: | |
| rm -rf test |
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> | |
| const static const int const ver = 5; | |
| int main(){ | |
| printf("VER = %d\n", ver); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment