#include "mathlink.h"/* send the string "Hello World" to a link */void f(MLINK lp){ unsigned short str[11]; str[0] = 'H'; str[1] = 'e'; str[2] = 'l'; str[3] = 'l'; str[4] = 'o'; str[5] = ' '; str[6] = 'W'; str[7] = 'o'; str[8] = 'r'; str[9] = 'l'; str[10] = 'd'; if(! MLPutUCS2String(lp, (const unsigned short *)str, 11)) { /* unable to put the string to lp */ }}