init commit

This commit is contained in:
2025-04-13 21:48:15 +03:00
commit 23255e9121
192 changed files with 12200 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
void
task2()
{
cJSON *item;
char *text;
item = cJSON_Parse("{"
"\"name\" : \"Ivanov\","
"\"age\" : 25"
"}");
text = cJSON_PrintUnformatted(item);
puts(text);
free(text);
cJSON_Delete(item);
}
int
main(int argc, char **argv)
{
task2();
return 0;
}