/*広告*/
/*[C言語]サンプルプログラム集 入れ替えソース1*/
#include <stdio.h> int main(){ int a = 100; int b = 200; int tmp = 0; printf("a = %d,b = %d\n\n",a,b); tmp = a; a = b; b = tmp; printf("a = %d,b = %d\n\n",a,b); return 0; }/*Copyright 2016 K.N/petitetech.com*/
/*広告*/