
c
轰轰战队冒险者
这个作者很懒,什么都没留下…
展开
-
如何在nginx下部署vue 项目
vim /etc/nginx/nginx.conf server { root /home/xxxx/home/; location /home { try_files $uri $uri/ @router; index index.html; } lo...原创 2020-04-14 20:35:06 · 259 阅读 · 0 评论 -
GoTo 递归
#include <stdio.h> #include <string.h>void ListFile() { int a = 10; goto cc; cc: a=a-1; printf("a=%d,已经减一\r\n",a); if(a>0){ goto cc; }} int main()原创 2017-09-03 20:28:39 · 415 阅读 · 0 评论