#include <stdio.h>
void myFunction() {
// 属于 myFunction 的局部变量
int x = 5;
// 打印变量 x
printf("%d", x);
}
int main() {
myFunction();
return 0;