+ 1
How write function strtok ?
3 Answers
0
Here's my first attempt:
https://code.sololearn.com/cSF27231rkwC/?ref=app
+ 2
static is a variable that remembers it's value (hence the word static). It's useful in functions, because it means you can call the function again, having already set a variable previously in that function. The variable's value still remain the same.
+ 1
what is work static ?