
c
文章平均质量分 50
南隅笙箫
双非毕业蹲哥,https://jimmyhjh.吸欧诶姆
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Jupyter Notebook内运行C
源起 得知在Jupyter Notebook不仅可以写python,还可以写C, C++, Java, SQL 这也太凹省了。 Jupyter kernels · jupyter/jupyter Wiki 安装jupyter-c-kernel 终端键入 sudo pip3 install jupyter-c-kernel sudo install_c_kernel 在VS Code测试 VS Code现在版本自带插件Jupyter 直接新建一个ipynb文件试试 点击右上角,把kernel改成C 新原创 2022-04-30 21:25:40 · 6397 阅读 · 2 评论 -
C语言 趋向于(-->)测试
知乎上看到C的技巧,看到个从来没见过的,太神奇了。 Code #include <stdio.h> int main() { int x = 10; while (x --> 0) { printf("%d ", x); } return 0; } Output原创 2022-04-23 15:21:21 · 1191 阅读 · 1 评论