herrDeng網內搜尋
自訂搜尋
Ads
2019年11月2日 星期六
Linux Ubuntu 16上裝telnet, SSH server遠端寫C程式
安裝軟體可用synaptic裝
關鍵字: openssh-server
Win 10上請裝 pietty或putty
文字編輯器可用純文字編輯器vi(vim)或nano
C程式的編譯、執行指令
$gcc ex.c -o ex.o
$./ex.o
C++程式的編譯、執行指令
$g++ ex.cpp -o ex.o
$./ex.o
訂閱:
意見 (Atom)
熱門文章
-
計算你上學期加權平均
-
用 while loop 算 s=3*3+4*4+....88*88
-
輸出課表代碼矩陣 Hint: 2-D array, double-for loop
-
請用C/C++ 程式計算 S=1*1+2*2+3*3+4*4+.....+20*20=?
-
33, 45, 87, 99, 27 算平均
-
data structure 期中考乙
-
輸出字串20次
-
產生10個0~99的亂數存在a[10] 中
-
請用格式化輸出排 9x9乘法表 hint: double-for, "%nd"