Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

print ascii value in c

#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("ASCII value of %c = %d", c, c);
    
    return 0;
}
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #print #ascii
ADD COMMENT
Topic
Name
6+6 =