#include <stdio.h> void get_ASCII_value(char c) { printf("The ASCII value of %c = %d", c, c); } int main(void) { char c; printf("Enter a ...
確定! 回上一頁