Tcl Programming quiz, level Advanced, question 9
| Question: | To use Tcl within your C program, you would: |
| Answer 1: | create an interpretter using Tcl_CreateInterp, then run it using a C function such as Tcl_Eval. This was the CORRECT answer |
| Answer 2: | create an interpretter using Tcl_Create, then run it using a C function such as Tcl_Run. |
| Answer 3: | Allocate memory for a Tcl interpretter object using malloc, create and initialise the interpretter using Tcl_Create_New, and send it a signal USR1 to start it running. |
This was a question from our quiz ... but we have now provided you with
the answer (above) - we prefer to provide you with information rather than to
puzzle you.
|
|