Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「json-c/json.h」によって、Cでjsonを解析します。
私は構造を持っています:section: [ {item: {...}, item: {...}, ..., item: {...}} ]
section: [ {item: {...}, item: {...}, ..., item: {...}} ]
次の方法で 1 アイテムを取得できます。
struct json_object item = json_object_object_get(section, "item");
アイテムの数を取得し、すべてのアイテムを解析するにはどうすればよいですか?