#include void f(void); /* prototype for f() */int main(void){ printf("I "); f(); printf("rntsoft.com."); return 0;}void f(void){ printf("like ");}