#include "mathlink.h"/* send the symbol $Version to a link */void f(MLINK lp){ unsigned short symb[8]; symb[0] = '$'; symb[1] = 'V'; symb[2] = 'e'; symb[3] = 'r'; symb[4] = 's'; symb[5] = 'i'; symb[6] = 'o'; symb[7] = 'n'; if(! MLPutUCS2Symbol(lp, (const unsigned short *)symb, 8)) { /* unable to send the symbol to lp */ }}