The syntax of sinX is the script used in sinX.
The syntax of something, whether it be Python, C++ or even sinX is just the code.
That's why when you check the code for errors, the button says "check syntax"!
A) operating system
It is going to let you "operate" it using the mouse and keyboard
Answer:
quicksort.cpp
void quickSort(int arr[], int left, int right) {
int i = left, j = right;
int tmp;
int pivot = arr[(left + right) / 2];
/* partition */
while (i <= j) {
while (arr[i] < pivot)
i++;
while (arr[j] > pivot)
j--;
if (i <= j) {
tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
i++;
j--;
}
};
/* recursion */
if (left < j)
quickSort(arr, left, j);
if (i < right)
quickSort(arr, i, right);
}