इस वीडियो में मैं उबंटू 18.04 एलटीएस लिनक्स पर जीसीसी का उपयोग करके हाउ टू कंपाइल और रन सी कार्यक्रम दिखाने जा रहा हूं। लिनक्स टकसाल, डेबियन और अन्य लिनक्स सिस्टम के लिए समान निर्देश मान्य होगा
==========================================
आदेश द्वारा GCC संस्करण की जाँच करके अपनी स्थापना की पुष्टि करें:
gcc - तोड़ना
===========================================
कमांड द्वारा बिल्ड-एसेंशियल इंस्टॉल करें:
sudo apt इंस्टॉल बिल्ड-एसेंशियल
===========================================
कोड को hello.c फ़ाइल में संकलित करने के लिए, इसे संकलित करें और निष्पादित करें:
$ gcc -o हैलो hello.c
$
नमस्ते दुनिया!
In this video I am going to show How to Compile and Run C program Using GCC on Ubuntu 18.04 LTS Linux. Same instruction will be valid for Linux mint, Debian and other Linux systems
==========================================
Confirm your installation by checking for GCC version by the command:
gcc --version
===========================================
Install build-essential by the command:
sudo apt install build-essential
===========================================
To compile the code within hello.c file, compile and execute it:
$ gcc -o hello hello.c
$ ./hello
Hello, World!
#computer technology
#computer science