Skip to content

Instantly share code, notes, and snippets.

@otobrglez
Created October 5, 2015 20:47
Show Gist options
  • Select an option

  • Save otobrglez/57eb1afce058b9e3a7a1 to your computer and use it in GitHub Desktop.

Select an option

Save otobrglez/57eb1afce058b9e3a7a1 to your computer and use it in GitHub Desktop.
Playing with static and const in C
run: test
./test
test:
clang -ansi test.c -o test
clean:
rm -rf test
#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