//#include "stdafx.h"//If the vc++6.0, with this line.#include "stdio.h"int main(void){ char a,b; printf("Input 2 characters...\n"); scanf("%c %c",&a,&b); printf("%c(%d)\t%c(%d)\n",a,a,b,b); return 0;}