This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-04-13 21:48:15 +03:00

28 lines
382 B
C
Executable File

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
void
task1()
{
cJSON *item;
char *json = "{"
"\"a\" : true, "
"\"b\" : { "
"\"c\":\"stro\\\"ka\""
"}"
"}";
item = cJSON_Parse(json);
cJSON_Delete(item);
}
int
main(int argc, char **argv)
{
task1();
return 0;
}