Загрузка данных


#include <stdio.h>

int main() {
    float temps[4];
    
    temps[1] = 36.6;
    temps[3] = 37.2;
    
    printf("Температуры: %.1f и %.1f", temps[1], temps[3]);
    
    return 0;
}