1 2 3 4 5 6 7 8
#include <stdio.h> #include <stdlib.h> char *s; void g(void){printf("%c\n",s[0]);} void f(void){g();} int main(){ f(); }