Hello,
In this week’s feature highlight, we look at How to Install GCC on Ubuntu 22.10

The default Ubuntu repositories contain a meta-package named “build-essential” that includes the GNU compiler collection, GNU debugger, and other development libraries and tools required for compiling software.
Update System
apt update
Install the GCC package dependencies.
apt install build-essential
To check GCC version
gcc --version
Output:
root@crown:~# gcc --version
gcc (Ubuntu 12.2.0-3ubuntu1) 12.2.0
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software;
… Read More