Last active
October 7, 2015 16:26
-
-
Save missingdays/77cb107268c468a9dd45 to your computer and use it in GitHub Desktop.
Return static
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> | |
int* a(){ | |
static int b = 5; | |
return &b; | |
} | |
int main(){ | |
int *b = a(); | |
printf("%d", *(b)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment