#include <stdio.h> fun(char x) { char y; y=x-4; return y; } main() { printf("%d",sizeof(fun(97))); printf("\n%d",fun(97)); getchar(); }