Write a program to which accepts a character from the user and display its ASCII value. Also display its next and previous integer.

#include <stdio.h>
int main() 
{  
    char c;
    printf("Enter a character: ");
    scanf("%c", &c);  
    // %d displays the integer value of a character
    // %c displays the actual character
    printf("\nASCII value of %c = %d", c, c);
    c++;
    printf("\nNext Integer value of %c = %d", c, c);
    c--;
    c--;
    printf("\nPrevious Integer value of %c = %d", c, c);
    return 0;
}

0 Comments:

Post a Comment