10-10-2011 03:33 PM
Hello,
I am new and just starting to learn labwindow cvi. I learned C and C++ but not labwindow.
Can anyone help me to identify the comparision between C++ console I/O and labwindow fmtout..?
Does anyone have the list of the name of the functions of labwindow and explaine what each of one does?
Thanks in advanced
cnv
10-11-2011 12:05 AM
CVI is basically a C-compiler . So you can use the C-stdio functions ( printf() and friends) out of the box . And the CVI specific functions (FmtOut() and friends ) are basically somewhat extended variants of printf with more options for the format strings. Whereas the C++ IO concept ( streamobjects like cout ) ist quite different.
For ´Documentation have a look into to the CVI help,library reference, Formating and IO library.