#include<stdio.h>

/**
 * Terry Harvey CIS 105 Section 010 TA Tina Weymouth
 *  Demonstration program to show the data type char.
 **/

int main(){

    char c;

    printf("Enter a char: ");
    scanf("%c", &c);
    printf("as a char: %c, as an integer: %d\n", c, c);
    printf("%d\n", sizeof(c));

    return 0;

}


