Data Type C

#include 
main() {
    register int  i = 0; 
    for( i = 0; i < 2; i++) {
        printf("i = %d\n",i);
    }
}