#include void f(void);int main(void){ f(); return 0;}void f(void){ printf("Here."); return; /* return with no value */ printf("Never.");}