2.1.1.4 out_int


Description

a simple function to print an integer, output will be the current output window, can be the Script Window, the output log or the labtalk console.

Syntax

int out_int( LPCSTR lpcstr, int nValue )

Parameters

lpcstr
nValue

Return

the number of characters printed

Examples

EX1

void out_int_ex1()
{
    int nn = 4;
    out_int("nn = ",nn);
}

Remark

See Also

out_double, out_str

Header to Include

origin.h

Reference