List of Open Source computer software programs

Some of the most useful computer software are given below for everyone to understand and download:
Firefox web browser: Browse the web with this awesome web browser. It's not only open source but also a product of Non Profit Organization(Mozilla Corporation).
Mozilla Thunderbird: Read and send email directly from your desktop.
RSSOwl Newsreader: Get latest news directly without searching or browsing websites.
VLC media player: Play your favorite music or videos.
GIMP: Edit or create photos, it offers many great features.
OpenOffice: Create and edit documents, presentations, spreadsheets and many more. It is compatible with file formats used by Microsoft Office.
Miro Video Converter: Convert videos to many different formats including Android, iPhone.
Miro: Awesome music and video player, allows you to search videos directly from it, browse websites, download torrents, listen to podcast.
PeaZip: Create and extract archived files.

Notepad++ text editor: A very useful text editor that allows files to be opened in tabs, advanced search and replace, auto completion and you can customize it by downloading additional plugins.
Ubuntu Operating System: Linux distribution which is easy to use, configure and learn. If you wish to switch to Linux then it's simple with Ubuntu.

Slow Up by George Saoulidis. $8.99 from Smashwords.com
How Fast Can You Think? Limitless meets Black Mirror in this novel that pushes the limits of a couple's minds.

Play games

There are many free games that you can download and play. Some of them which i like are:
Supertuxkart: Solve challenges and compete with others.

Fibonacci series in C

Fibonacci series in c programming: c program for Fibonacci series without and with recursion. Using the code below you can print as many numbers of terms of series as desired. Numbers of Fibonacci sequence are known as Fibonacci numbers. First few numbers of series are 0, 1, 1, 2, 3, 5, 8 etc, Except first two terms in sequence every other term is the sum of two previous terms, For example 8 = 3 + 5 (addition of 3, 5). This sequence has many applications in mathematics and Computer Science.

Fibonacci series in c using for loop

/* Fibonacci Series c language */
#include
 
int main()
{
   int n, first = 0, second = 1, next, c;
 
   printf("Enter the number of terms\n");
   scanf("%d",&n);
 
   printf("First %d terms of Fibonacci series are :-\n",n);
 
   for ( c = 0 ; c < n ; c++ )
   {
      if ( c <= 1 )
         next = c;
      else
      {
         next = first + second;
         first = second;
         second = next;
      }
      printf("%d\n",next);
   }
 
   return 0;
}

Armstrong number C program

Armstrong number c program: c programming code to check whether a number is armstrong or not. A number is armstrong if the sum of cubes of individual digits of a number is equal to the number itself. For example 371 is an armstrong number as 33 + 73 + 13 = 371. Some other armstrong numbers are: 0, 1, 153, 370, 407.

C programming code

#include 
 
int main()
{
   int number, sum = 0, temp, remainder;
 
   printf("Enter an integer\n");
   scanf("%d",&number);
 
   temp = number;
 
   while( temp != 0 )
   {
      remainder = temp%10;
      sum = sum + remainder*remainder*remainder;
      temp = temp/10;
   }
 
   if ( number == sum )
      printf("Entered number is an armstrong number.\n");
   else
      printf("Entered number is not an armstrong number.\n");
 
   return 0;
}

C program for prime number

Prime number program in c: c program for prime number, this code prints prime numbers using c programming language. To check whether a number is prime or not see another code below. Prime number logic: a number is prime if it is divisible only by one and itself. Remember two is the only even and also the smallest prime number. First few prime numbers are 2, 3, 5, 7, 11, 13, 17....etc. Prime numbers have many applications in computer science and mathematics. A number greater than one can be factorized into prime numbers, For example 540 = 22*33*51

Prime number program in c language

#include
 
int main()
{
   int n, i = 3, count, c;
 
   printf("Enter the number of prime numbers required\n");
   scanf("%d",&n);
 
   if ( n >= 1 )
   {
      printf("First %d prime numbers are :\n",n);
      printf("2\n");
   }
 
   for ( count = 2 ; count <= n ;  )
   {
      for ( c = 2 ; c <= i - 1 ; c++ )
      {
         if ( i%c == 0 )
            break;
      }
      if ( c == i )
      {
         printf("%d\n",i);
         count++;
      }
      i++;
   }
 
   return 0;
}