Hello! It's me again!
Am i asking too many questions, or am i asking too many question?? :-)
I am using a ploting tool that comes with the LASSPTools (xplot).
The usual way to run it is from the command shell using:
% axis -lt "Distribution" -lx "Staff" -ly "Month" < cocomo-log | xplot
but I need to make a system call to it from my program. The problem is the
quotations.. If i use the following:
void
xplotCB ( Widget w, Widget clientData, XtPointer callData)
{
system
("axis -lt "Distribution" -lx "Staff" -ly "Month" < cocomo-log | xplot");
}
the compiler will complain about the nested ".
And without it, the graph does not look nice (no title and x/y labels).
Any suggestions to fix this problems.
Thanks a lot.
-ibrahim