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