Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

首先看一段代码 func.c 123456int buf = 0;void func() { buf = 2; /*Do something else*/} main.c 1234567891011# include <stdio.h>int buf;void func();int main() { buf = 1; func(); pr...