I got it to print the original and all I did was change line 45 from:
Code:
printf("%4d ", *pAry);
Code:
printf("%4d ", *pAry++);
printf("%4d ", *pAry);
printf("%4d ", *pAry++);
#include "stdafx.h" #define SIZE 4 int* getData (int* pAry, int arySize); void selectSort (int* pAry, int* pLast); void printData (int* pAry, int* pLast); int* smallest (int* pAry, int*
#include "stdafx.h" #define SIZE 4
#include "stdafx.h" #define ARY_SIZE 4 int main(void)
Leave a comment: