I want to split a string i have "msg 10 2" into different strings & ints. so instead of having
msg 10 2
I can take each as a seperate parameter can print:
msg
10
2
I use the variable to define a message:
char msg[30] = "msg 10 2";
I then want to take each field as seperate values/parameters.
Thanks