Cannot convert 'int' to 'int *' Type mismatch in parameter 'v' in call to 'shellsort(int *,int)'http://softtime.ru/cppCannot convert 'int' to 'int *' Type mismatch in parameter 'v' in call to 'shellsort(int *,int)'http://softtime.ru/cpp/read.php?id_forum=1&id_theme=556#post3013Вместо строки shellsort(v, 17); следует использовать строку shellsort(v, 17); Так как функция ожидает массив, а не элемент массива.Cannot convert 'int' to 'int *' Type mismatch in parameter 'v' in call to 'shellsort(int *,int)'Fri, 9 Nov 2007 17:10:06 +0300cheopsCannot convert 'int' to 'int *' Type mismatch in parameter 'v' in call to 'shellsort(int *,int)'http://softtime.ru/cpp/read.php?id_forum=1&id_theme=556#post3010#include "stdio.h" #include "stdlib.h" void shellsort(int v[], int n) { int gap, i, j, temp; for (gap = n/2; gap...Cannot convert 'int' to 'int *' Type mismatch in parameter 'v' in call to 'shellsort(int *,int)'Fri, 9 Nov 2007 16:51:40 +0300нннннн