#include <stdio.h> int main() { char c; printf("Enter a character: "); scanf("%c",&c); printf("ASCII code for %c is %d\n",c,c); return 0; }
確定! 回上一頁