深入c
题目: 在tc中如何将c语言程序,翻译为汇编语言程序。 举例: 将如下例程翻译为对应的汇编语言程序(注意:编译模式的类型) int main(void) { int one; int two; int three; void get_value(int *,int *,int *);
get_value(&one,&two,&three);
printf("one=%d\n",one); printf("two=%d\n",two); printf("three=%d\n",three);
getch(); return 0; }
void get_value(int *one,int *two,int *three) { *one=1; *two=2; *three=3; }