#include int main() { int i; signed char sc; unsigned char uc; for(i=-128; i<=255; i++) { sc=i; uc=i; printf("%hhd %hhu\n", sc, uc); } return 0; }