#include void jerk(int repeat, char c); void main() { printf("He calls me on the phone with nothing say\n"); printf("Not once, or twice, but three times a day!\n"); jerk(1,'?'); printf("He insulted my wife, my cat, my mother\n"); printf("He irritates and grates, like no other!\n"); jerk(2,'?'); printf("He chuckles it off, his big belly a-heavin'\n"); printf("But he won't be laughing when I get even!\n"); jerk(3,'!'); } /* This is the jerk() function */ void jerk(int repeat, char c) { int i; for(i=0;i