指出下面一段程序的输出结果:
#include <stdio.h>
int first;
int second;
void callee(int *first)
{
int second;
second = 1;
*first = 2;
printf("callee:first = %d second = %d\n",*first,second);
}
int main(int argc,char *argv[])
{
first = 1;
second = 2;
callee(&first);
printf("callee:first = %d second = %d\n",first,second);
return 0;
}
