Hello everyone,
I was wondering how I could call a function in an other function in C. For example, I created the function :
void speed (int argc, char** argv)
from a hyperterminal, I type 1 or 2 and I get something written on the hyperterminal. In another function called:
void menu (int argc, char ** argv)
I want to call the previous function: speed(...)
. I dont know what to fill in for ...
.
thanks jim