qfedu-web/www/cgi-bin/data1.c

10 lines
214 B
C
Raw Normal View History

2023-09-18 11:21:50 +08:00
#include <stdio.h>
int main(int argc, char const *argv[])
{
printf("content-type: application/json; charset=utf-8\r\n");
printf("\r\n\r\n");
printf("{\"id\": 1, \"name\": \"disen\"}");
return 0;
}