Skip to content

BuddhadebKoner/Overpowered-CPP

Repository files navigation

C++ Compilation and Execution

Compilation

g++

g++ Hello_World.cpp -o helloworld.exe

Compiles Hello_World.cpp into helloworld.

gcc (C++)

gcc -x c++ Hello_World.cpp -o helloworld.out

Compiles Hello_World.cpp as C++ code using gcc.

clang++

clang++ Hello_World.cpp -o helloworld.out

Compiles Hello_World.cpp into helloworld using clang++.

Execution

./helloworld.out
./helloworld.bin
./helloworld.run
./helloworld.exe
./helloworld.app
./helloworld.script

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published