I have this in my Code, but if i run this part is ignored. This is not part of an function its just there, and if I delete this brackets the code doesnt work. Why are there these brackets ?
bool result = 0;
unsigned int n_comparisons = 0;
{ // what are they for ?
for(int i = 0; i < len; i++)
array[i] = i;
bool result = search<float>(array, len, len/2, n_comparisons);
}// what are they for ?
Sorry for my bad English.