#include #include int main(int argc, char **argv) { for (float x = 0; x < 5.2; x += 0.2) printf("%f. ", x); printf("\n"); return 0; }