PrevUpHomeNext

kubuntu install cpp compiler


Kubuntu install c++ compiler - Posted on Jun 12, 2024 - See https://kubuntu.org - Logs Home - d0021

kubuntu install cpp compiler

Kubuntu install c++ compiler.

Install gcc

Install gcc c++ compiler

su -
apt install g++

Install clang++

Insall clang c++ compiler

su -
apt install clang libc++-dev libc++abi-dev

cpp example

#include <iostream>

int main()
{
	std::cout << "Hello c++!" << std::endl;
}

See Also

cppfx

Cheers, cpp/c++ !

const std::string greeting = "Cheers, c++!";

std::cout << greeting << std::endl;

std::cout << greeting.data() << std::endl;

caught:

  ===================================
  #  The c++ programming language.  #
  #                                 #
  #  Join c++                       #
  #  Deck                           #
  ===================================

Home: cppfx.xyz


PrevUpHomeNext