#include "stdafx.h" int main(int argc, char* argv[]) { char c1, c2; c1=97; c2=98; printf("%c %c\n", c1, c2); printf("%d %d\n", c1, c2); }