Listing 2 (hello.c)

#include <stdio.h>

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