
/*********** hello.c *****************/

#include <stdio.h>

main()
{
   char *ss = "this is a test";
   printf("\nHello from power C");
   again(ss);
}

/*********** end of hello.c ***********/
