13 Jun 2016

Executing C programs on Ubuntu 15.10 using GNU Compiler Collection (GCC)

It is a great experience executing C programs in the linux terminal. All you need is to learn a few commands as GCC comes inbuilt with Ubuntu 15.10 distribution.

 Step-1

Write your C program.

 Step-2

Open the terminal. Navigate to the file location and execute the following commands: 

$gcc -o love ubuntu_love.c

(This is the compilation process. It invokes gcc compiler and generates the executable file i.e. 'love' in our case)

$./love

(This is the execution process.)

  

How to install Adobe Flashplayer plugin in Firefox browser on Ubuntu 15.10

A very useful article showing how to install Adobe Flashplayer in Firefox on Ubuntu 15.10.

http://sourcedigit.com/17666-install-flash-player-for-firefox-on-ubuntu-15-10/