/* -------------------------------------------------- for@START END@w for_03_start_end -------------------------------------------------- */ #include main() { int i; int start,end,step; printf("rs`qs--->"); scanf("%d",&start); printf("dmc--->"); scanf("%d",&end); printf("rsdo--->"); scanf("%d",&step); for ( i=start ; i<=end ; i+=step ) { printf("%5d",i); } }