#include int f(void); int main(void){ char ch; ch = f(); printf("%c", ch); return 0;}int f(void){ return 'a';}