#純靠北工程師4i0
----------
找不太到跟我情況類似的人的發文,所以想問問各位大大。
我自學了一些C/C++,然後因為興趣跟同學的關係有學習一些演算法跟資料結構,寒假的時候有空就打打codeforces,目前rating大概2000多一些,估計還能再增加
所以根據我的老師和我自己的感覺,在DSA方面我算蠻有潛力的(當然不是跟大神比,但自認中上),不過我其實非常不會用電腦,沒用過linux,然後網路的東西一竅不通,就連CF我都是用Dev-C++在打的,程式也寫得不太好,雖說用C++但我其實不太會物件導向,安全性什麼的東西我也不懂。
所以對於我這種人而言,是不是其實離成為工程師非常遙遠?我不知道目前的我學習DSA這些東西到底能不能幫助我工作(我目前是當娛樂,但也希望能對未來有幫助),有任何工作是給我這種懂一些DSA,但不是真的很懂電腦的人嗎?
----------
🗳️ [群眾審核] https://kaobei.engineer/cards/review
👉 [GitHub Repo] https://github.com/init-engineer/init.engineer
📢 [匿名發文] https://kaobei.engineer/cards/create
🥙 [全平台留言] https://kaobei.engineer/cards/show/5832
「dev-c++ linux」的推薦目錄:
- 關於dev-c++ linux 在 純靠北工程師 Facebook 的最佳解答
- 關於dev-c++ linux 在 [問題] 請問一下在DEV-C++中,使用GCC有什麼需要注意的嗎? 的評價
- 關於dev-c++ linux 在 Dev C++ | download and install in linux ubuntu 20.04 - YouTube 的評價
- 關於dev-c++ linux 在 Embarcadero/Dev-Cpp: A fast, portable, simple, and ... - GitHub 的評價
- 關於dev-c++ linux 在 How to compile C ++ code from Windows for Linux (Dev-Cpp) 的評價
- 關於dev-c++ linux 在 [問題] dev c 環境變數設定- 看板C_and_CPP | PTT數位生活區 的評價
dev-c++ linux 在 Dev C++ | download and install in linux ubuntu 20.04 - YouTube 的推薦與評價
Dev C++ Installation steps Step1. Run this command on terminal sudo apt-get install wine Step2. Download ... ... <看更多>
dev-c++ linux 在 Embarcadero/Dev-Cpp: A fast, portable, simple, and ... - GitHub 的推薦與評價
Embarcadero Dev-C++ is a new and improved fork (sponsored by Embarcadero) of Bloodshed Dev-C++ and Orwell Dev-C++. It is a full-featured Integrated Development ... ... <看更多>
dev-c++ linux 在 [問題] 請問一下在DEV-C++中,使用GCC有什麼需要注意的嗎? 的推薦與評價
遇到的問題: (題意請描述清楚)
抱歉,因為google了一陣子,但是小弟不才,還是無法解決。
在版上爬文,如果要寫一個能在linux上跑的c code的話,
好像要使用GCC這個complier,
DEV-C++裡面有,
include有unistd.h,
但是我要用fork()這個函式,
他顯示『 [Linker error] undefined reference to `fork' 』
也google過了,
這是第一次在DEV-C++中使用GCC,
所以不是很熟,請問我include還要加入什麼嗎?
麻煩了,謝謝。
希望得到的正確結果:
程式跑出來的錯誤結果:
complier undefined reference to 'fork'
開發平台: (例: VC++ or gcc/g++ or Dev-C++, Windows or Linux)
Dev-C++
有問題的code: (請善用置底文標色功能)
版上的前輩使用fork()的範例程式
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main()
{
pid_t p;
int status;
printf("test a\n");
if ((p=fork())!=0)
{
printf("test b\n");
waitpid(-1,&status,0);
printf("test c\n");
}else{
printf("test d\n");
}
printf("test e\n");
return 0;
}
補充說明:
這個小問題卡了一小時多,沒有使用過unix系統,所以很頭大,
不好意思,謝謝。
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.204.31.175
※ 編輯: mine1988 來自: 123.204.31.175 (11/14 04:24)
... <看更多>