0
json_object_array_put_idx- Add json object to Array at specified index
Posted by Joys of Programming on in json-c
json_object_array_add is used to add a json object to an array. Using json_object_array_put_idx, we can put a json object at a specified index The syntax of the function is Specify the object where the json object has to be added, index and the value (json object) as the arguments When you specify objects at some [...]