C語言的int類型是一種基本數據類型,而JSON(JavaScript Object Notation)是一種輕量級的數據交換格式類型。對于C語言中的int類型變量,我們可以使用一些庫函數來將其轉換成JSON類型。
#include <stdio.h> #include <stdlib.h> #include <jansson.h> int main() { int num = 123; json_t *jint = json_integer(num); char *output = json_dumps(jint, JSON_ENCODE_ANY); printf("%s\n", output); json_decref(jint); free(output); return 0; }
以上代碼使用json_integer函數將C語言中的int類型num變量轉換成json_t類型的數據,并使用json_dumps函數將json_t類型的數據轉換成JSON格式的字符串。
需要注意的是,在使用JSON庫的時候,需要引入相應的頭文件,即#include <jansson.h>。
上一篇python 打印對勾
下一篇python 打印關鍵字