#include<stdio.h>

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

int main(){

    char c;
    int n;

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

    return 0;

}


