I am new for Linux programming (Ubuntu server).
What difference between instructions:
c++ -c main.cpp -o main.o -lstdc++
c++ -c Console.cpp -o Console.o -lstdc++
c++ main.o Console.o -o App1
and this:
g++ -c main.cpp -o main.o -lstdc++
g++ -c Console.cpp -o Console.o -lstdc++
g++ main.o Console.o -o App1
Are these instructions the same? Is c++ instruction provides another name for g++?
update-alternatives --display c++