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