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