Standard C printf function. Output will be the current output window, can be the Script Window, the output log or the labtalk console.
int printf( LPCSTR lpcszFormat, ... )
EX1
void printf_ex1() { double vv = cos(3.14); int nn = 45; string str = "Test"; printf("For str(%s) and nn=%d, vv=%f\n",str, nn, vv); }
string::Format
origin.h