John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: Compiling C and C++ Programs


Compiling cpp without main function

1
2
3
your_username@hostname:~$ g++ -c Circle.cpp
your_username@hostname:~$ ls C*
Circle.cpp    Circle.h      Circle.o

For example, you can compile testcirc.cpp using the Circle.o object file: g++ -o test testcirc1.cpp Circle.o, execute using ./test


Backlinks


References:

Created:: 2022-01-18 15:29


Interactive Graph