-
Notifications
You must be signed in to change notification settings - Fork 0
SortArray_Count
Sancky edited this page Oct 18, 2022
·
1 revision
Get the elements count from an sorted array.
SortArray_Count(array[])
new SortedArray:array<10>;
SortArray_Insert(array, 1);
SortArray_Insert(array, 2);
SortArray_Insert(array, 3);
SortArray_Insert(array, 4);
printf("Sorted array have %d elements.", SortArray_Count(array));
Returns the count of the elements from the sorted array.