Ppc 29 Oct 2009 ppc.c#include <stdio.h>int main(){char *p, **pp, **s;void *malloc();p = "hello world";pp = (char **)malloc(sizeof(char[11]));s = pp;for(; *p != 0; *pp++, p++)*pp = p;printf("%s\n", *s);return(0);}OUTPUT:hello wolrd