point.c
来自「《C语言课程设计案例精编》源代码 希望对大家有所帮助」· C语言 代码 · 共 12 行
C
12 行
point(int*q1)
{char mouth[30];
int*p1,temp;
printf("the old information is %ld.\n",*q1);
printf("the new information is ");
scanf("%s\n",mouth);
p1=mouth;
temp=*q1,*q1=*p1,*p1=temp;
return(q1);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?