
/*********** hello2.c *****************/

#include <stdio.h>

again(char *ss)
{
   printf("\nHello again from power C");
   printf("\nHello again from power C -%s-", ss);
   printf("\nHello again from power C");
}

/*********** end of hello2.c ***********/
