#include /* Echo Line */ void echo() { printf("Enter string: "); char buf[8]; /* Way too small! */ gets(buf); puts(buf); } void call_echo() { echo(); } int main(int argc, char *argv[]) { call_echo(); return 0; }