My first program in linux

How to create, compile & run a C Program in Linux terminal

The C programming language is still alive because it is simple and can do a lot of things. As we know Turbo C compiler is a discontinued integrated development environment, well, on Linux you don’t need it as there is already GNU Compiler Collection to compile and run C or C++ programs. Therefore, if you know the C language, it is much easier to learn, write programs and run other programming languages ​​on Linux operating systems such as C ++, Java, Perl, or PHP, as the languages ​​have certain similarities. Here we will show the steps to install GCC compiler and how to write, compile and run a C program in Linux.

Now, what is a program?

Let’s say you want to train your cat or puppy how to sit or jump on your commands, then what language you will use. Obviously, your mother tongue whether it is English, German, Chinese, Hindi, or something else. We will not bark or meaau. In a similar way, if we want to tell our computer to perform some specific tasks such as calculations, we need to train it how to do that, with the help of a set of rules. But the problem is Computer only understands the binary language that is 0 or 1, thus we have created Programming languages to create programs that we can understand and after compiling our computer and later can execute the same. Thus, a program is a sequence of actions to achieve a goal.

Steps to write, run and compile C program in Linux

Here we are using Ubuntu 20.04 LTS, however, the steps given here are not only for it. You can also implement on older Ubuntu versions such as 18.04/16.04 including Linux Mint, Debian, Kali, CentOS, RedHat, Fedora Elementary, and more…

1. Install Compiler and other Dev tools

To write and execute a C program on Linux, we need a compiler that will compile the code we have written and give us an executable file for the same. Therefore, for that, if you are on Debian or Ubuntu then install build-essential, and on RHEL based distros go for Development Tools.

For RHEL/Fedora/CentOS

Run system update command, first:

dnf groupinstall 'Development Tools' or yum groupinstall 'Development Tools'

On Ubuntu or Debian systems

sudo apt-get update sudo apt-get install build-essential manpages-dev

You should have sudo or root user access to run the above commands…

Читайте также:  Create deb package linux

Install development tools on Ubuntu and Redhat centos

2. Check GCC version

GCC is the open-source library, which is an acronym for GNU Compiler Collection available for Linux and acts as a compiling system for Program C and other various programming languages. However, it mainly used to compile C and C++ programs… Thus, after installing the development tools in the first steps, you will also get GCC on your system. To confirm and check its version run:

To know only installed path

Check GCC compiler version

3. Open a Text editor on Ubuntu or RHEL

All Linux distros now come with graphical text editors, however, we can use the command terminal to create a text file to write C program codes as well using command line text editors such as nano, VIM, gedit, and more... Here we are using nano.

To install nano, if it is not on your system type:

RHEL/CentOS- sudo yum install nano

Ubuntu/Debian– sudo apt install nano

4. Write your first C Program in Linux terminal

Let’s create a demo C program in which we will include common C program library stdio.h to use various variables including functions for performing input and output. If you are learning C programming then you already familiar with the C libraries that we define in the header of the program to call various functions for performing various tasks.

For example, if you are writing a C program that mathematical functions then we need to declare math.h library, for graphics, we include graphics.h and so on…

Create a file:

Now, let’s add the following lines to create a simple C program that will give an output “Say hello to H2s” when we compile and execute it. To Save the file by pressing Ctrl+X, type Y, and then hit the Enter Key.

// my first demo C program #include int main()

The explanation for the above command- In the above command first we have added stdio.h library in the header and then int main(); in this syntax main() is the entry point of any C/C++ program, in short, it tells the compiler to start compiling from this point and int main() function will accept any number of arguments but it returns integer value usually zero. However, that is an old way, developers usually prefer int main(void) this represents a function that expects no arguments or when a program doesn’t require any initial parameters.

After that we use printf function to show or print a text ” Say hello to H2S” and to break the output line or to have a page break, we used \n (Escape Sequences). As we have used the main () function that generally supposed to return 0 value to confirm there is no failure in compiling and the task has been finished successfully, however, if it gets non-zero that means a failure. Nevertheless, declaring return 0; is not compulsory even without the program and the main () function will work in the same way.

Читайте также:  Общая папка virtualbox windows 10 linux

Write C Program Linux Ubuntu

4. Compile with GCC

Now, let’s Compile our first C program, we have written. We use GCC compiler

In the above command, we are compiling the demo.c file or program using GCC and saving it in an executable format that is a demo. You can save it with some other name as well.

5. Run C program in Ubuntu Terminal

Let’s Run it. For that simply type:

In the above, example, we have compiled a C program demo.c and saved it an executable called demo. Thus, to run the same, we type:

Compile C Program on Linux using GCC Compiler

6. C program to add numbers in Linux

Let’s go a little step further and write a simple program in C language to add numbers. In it, we will ask to users add two numbers and the program perform the addition and print the result.

Create a new program, let’s say sum.

Add the following code in that and save the file using Ctrl+X, type Y, and then press Enter key.

Program C two number add program on Ubuntu Linux

The explanation for the above code:

With the help int which is an integer variable, we are declaring three variables num1, num2, and sum. The num1 and num2 variables will hold the two numbers that a user will enter to get a result that will store in the sum variable.

After that, we are printing a text to ask a user to enter two numbers that you want to add.

Then we will use scanf function to take inputs from the user in integer format using another variable %d or % i. %d specifies the type of variable as decimal and %i specifies the type as an integer.

Now, we will use + operator to add num1 and num2 and store the result of the same in sum variable:

Finally, print the result of the addition using printf function. Now, what happening here is, first %i read the value stored in num1 and second %i read the value stored in num2, and third %i will read the value stored in sum. \n is just to page break line. After that, it prints all of them together which appears to the frontend user a familiar way to get an answer to its addition query.

printf(«%i + %i = %i \n», num1, num2, sum);

Compile and run your code

C programming on Linux terminal using GCC compiler

Closing thoughts:

Well, this tutorial is just an introduction on how to start with the C program in Linux, however, to go further in deep you have to acquire more knowledge through books on how libraries, functions, variables, and operators work in it.

Источник

Пишем первую программу на Python в Linux

Python доступен практически в любом современном дистрибутиве Linux, поэтому тем, кто собирается написать свою первую программу на Python в Linux, установка никаких дополнительных программ не потребуется (в дальнейшем нам конечно понадобятся кое-какие дополнительные библиотеки Python, но мы обязательно разберем их установку).

Читайте также:  Usb to vga adapter linux

Для написания своей первой программы на Python в Linux, просто запустите свой любимый Linux и следуйте шагам этого совета.

Для написания Python-программ можно использовать любой из текстовых редакторов (я буду рассматривать редактор vi/vim). Не пугайтесь, основное количество программистов не использует для написания простых (и не только!) программ какое-либо многофункциональное программное обеспечение (типа сред программирования и т.п.). Достаточно воспользоваться тем, что есть под рукой!

Пишем первую программу на Python в Linux

Давайте попробуем посмотреть наличие Python в вашем дистрибутиве Linux. Для этого выполните команду: which python и, в случае успеха, вы увидите что-то вроде этого:

Как видим, Python присутствует в нашей системе и это хороший знак для того, чтобы продолжить наши действия.

Создадим каталог, в котором мы будем практиковаться в написании программ на Python и назовем его testplace: mkdir testplace и перейдем в него, выполнив команду: cd ~/testplace

Пишем первую программу на Python в Linux

Теперь создадим текстовый файл first.py, который и будет нашей первой программой на Python. Выполните команду: touch first.py и посмотрим его наличие командой: ls он обязательно там должен появиться!

Обратите внимание, что расширение у созданного нами файла должно быть .py. Это расширение стандартно для программ на Python и вскоре вы увидите, что очень много программ на Python уже существуют в вашей системе (если у вас Linux/Unix).

Теперь приступаем к написанию кода нашей первой программы на Python.

Пишем первую программу на Python в Linux

Откроем созданный нами файл в редакторе vi/vim: vi first.py и впишем в него следующие строки: #!/usr/bin/python
# My first program on Python!
print «Hello World. »

Выйдем из файла с сохранением, выполнив: :wq .

Для того, чтобы выполнить написанную нами программу в Linux, нам необходимо назначить ей права на выполнение. Сделаем это командой: chmod x first.py

Пишем первую программу на Python в Linux

Пришло время попробовать запустить созданную нами нашу первую программу на Python. Выполните в командной строке: ./first.py и посмотрите на результат. Он должен быть таким:

Код нашей первой программы очень прост:

1 строка ( #!/usr/bin/python ) — мы указываем путь к интерпретатору. Этой строкой будут начинаться многие дальнейшие наши программы, поэтому введем это за правило.

2 строка ( # My first program on Python! ) — комментарий. Все комментарии начинаются со знака #. Заметьте, что предыдущая строка — не комментарий!

3 строка ( print «Hello World. « ) — это просто вывод на экран надписи «Hello World. «.

Мы с вами написали крайне примитивную программу, выводящую на экран всего лишь одну строку, но многие учебники по программированию начинаются именно с этой «программы». Это стандарт, с которого начинают все программисты. С него начали и мы.

В последующих статьях мы не будем разбирать то, как создать файл и как назначить ему права на выполнение, а будем разбирать код создаваемых программ и сам процесс их работы.

Источник

Оцените статью
Adblock
detector