/* * main.c - demo/test program for speak and shout functions * CSE333 demo, 4/17 HP */ #include "speak.h" #include "shout.h" /* Say HELLO and goodbye */ int main(int argc, char* argv[]) { shout("hello"); speak("goodbye"); return 0; }