内容过程中,把写内容过程中经常用到的内容收藏起来,如下内容是关于C语言不定义中间变量交换两个数字的的内容,应该能对码农也有用途。
#include<stdio.h>
main()
{
int a, b;
printf("please input a:");
printf("please input b:");
printf("a=%d,b=%d", a, b);
b=b^a;
a=a^b;
}
原文地址:https://blog.51cto.com/14132786/2377228
时间: 2024-10-13 11:47:12