#include "pvm3.h" #include "stdlib.h" #include "stdio.h" #include "string.h" int main() { char buf[100]; strcpy(buf, "Hello"); // using the default datatype pvm_initsend(PvmDataDefault); // wrap the data to a message pvm_pkstr(buf); // send the message to the parent with the tag: 1 pvm_send(pvm_parent(),1); pvm_exit(); exit(EXIT_SUCCESS); }