How install build-essential Ubuntu?

How install build-essential Ubuntu? Install the build-essential packages by running the below-given command: $ sudo apt install build-essential. $ gcc –version. $ nano testprogram.c. // testprogram.c. #include int main() { printf(“Test, Program!\ n”); return 0; } $ gcc testprogram.c -o testprogram. $ ./ testprogram. What is sudo apt-get install build-essential? Read more…