parent
54606281ec
commit
67e95dfb8e
@ -1,18 +1,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include "cJSON.h"
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
// 返回一个简单的 JSON 对象
|
|
||||||
cJSON *root = cJSON_CreateObject();
|
|
||||||
cJSON_AddStringToObject(root, "message", "HELLO WORLD!");
|
|
||||||
|
|
||||||
char *json_string = cJSON_Print(root);
|
printf("{ \"message\": \" hello world!\" }\n");
|
||||||
printf("%s", json_string);
|
|
||||||
printf("{ \"runtim\": \" second\" }\n");
|
|
||||||
|
|
||||||
// 释放内存
|
|
||||||
cJSON_Delete(root);
|
|
||||||
free(json_string);
|
|
||||||
return 0; // 返回 0 表示程序成功
|
return 0; // 返回 0 表示程序成功
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue