[C언어] 버블정렬 #include void swap(int *px,int*py) { int temp = *px; *px = *py; *py = temp; } void bubblesort(int data[],int size) { int i,j; for(i=0;i 카테고리 없음 2019.01.03