for (size_t i = 11; i-- > 0; ) {
// Do something, f.ex. array[i] = i
}
Note: The question starts the loop with value=10(which is strange, but not impossible). I start with 11, but the first time the loop body is enterered, it has already been decremented to 10.