Refer the url to install the C compiler in Ubuntu OS.https://linuxconfig.org/how-to-install-gcc-the-c-compiler-on-ubuntu-18-04-bionic-beaver-linuxAfter installing the compiler, open terminal and write the command: gcc –version Do not want …
In the previous article, I have written simple C program. Will try to understand the code line by line. #include<stdio.h>#include is a preprocessor directive. It …