Creating variables

ive been using Dev-c++ for a day and want to know how to create some variables in a for loop called val1 val2 val3 and so on. so far i have this:

for(int i=1;i<=5;++i){
float val+i;
}