#include char f(char i); int main(void){ char y; y=f(5); printf("‚™‚Ì’l‚Í%d",y); } char f(char j){ char y; y=3*j+5; return(y); }