I have a two questions then like.
The question is as follows
How i be able so as: put into the variable of char** type :) the functions names?
detailed (as a rough guide)...
so as to...
and
How i put into the variable of (whats type?) label name?
detailed (as a rough guide)...
so as to...
request not laugh
The question is as follows
How i be able so as: put into the variable of char** type :) the functions names?
detailed (as a rough guide)...
Code:
char *function_names[] = { "function_A()", "function_B()", "function_C()" };
Code:
i=0; while( i<3 ) { /*call*/ function_names[ i ]; ++i; }
and
How i put into the variable of (whats type?) label name?
detailed (as a rough guide)...
Code:
char *labels_names[] = { "label_A()", "label_B()", "label_C()" };
Code:
... goto labels_names[ 0 ]; ...
Comment