본문 바로가기
Problem Solving

Never ever do this mistake

by REAL IT 2023. 7. 12.
728x90

Never do these!

(x) g++ -o test.cpp test

(x) gcc -o test.cpp test

 

Because it will completely delete your test.cpp.

 

Do this (o)

g++ test.cpp -o test

 

I didn't want to know it.

'Problem Solving' 카테고리의 다른 글

방송대 공략집 KNOU-HOW 개정 3판  (0) 2023.08.16
Naming Conventions  (0) 2023.08.01
My first g++ compile ever  (0) 2023.07.12
CGI vs WSGI vs ASGI  (0) 2023.07.02
using namespace std  (0) 2023.07.02