Can anyone help in writing a C parser (using Codewarrior) to parse the following file? I tried many C language json parser, but unfortunately didn't get the idea or they make it difficult.
[
[0,"Door1","Door1Drv","Calculator","Alarm"],
[1,"Door3","Door3Drv","Calculator","Alarm"],
[2,"Door2","Door2Drv","Calculator","Alarm"]]
For advance application, recommend to use Frozen. If your application has fix data format as shown above, see below for your ref.
Quite basic version look like below:
With input:
Output looks like:
Feel free to customize.