Data Type C

#include 
main() {
    char i,j ;
    i = 1;
    
    while (i > 0) {
        j = i; 
        i++;  
    }
    printf ("Maximum value of char is %d\n",j);
    printf ("The value of char after overflow is %d\n",i);
}