#include void f(); int main(void) { f("hello"); return 0; } void f(char *str) { puts(str); }