DEFINITION OF APPLICATION SOFTWARE:-> Application software is a program or it contains a group of programs designed toperform specific user tasks. It is also called as end-user-software. It enables user toperform specific data processing tasks on computer. There are two categories ofapplication software, pre-written software package and user-developed applicationprograms. ->… Continue Reading What is Application Software

DEFINITION OF SYSTEM SOFTWARE: This is designed to facilitate the use of computer. It is responsible for controlling,integrating and managing the individual hardware components of the computer. Operating system , loader, linker etc,. are the examples of System Software. These programs perform standard tasks such as organizing files,scheduling jobs through… Continue Reading WHAT IS SYSTEM SOFTWARE ?

If The application is developed on a machine and can be executed on any other machines irrespective of platform  then it is called Platform Independent. -> The Applications developed using JAVA and .NET are platform independent. ->The source code of this languages when compiled, get converted into intermediate code (semi-finished),… Continue Reading What is Platform Independent / Platform Independence

A platform is simply a Operating System or it may be a combination of both hardware and software. Platform is a combination of hardware and software to run software applications. Here the architecture of computer is a hardware platform and the the software  running on the hardware/architecture is an Operating… Continue Reading What is PLATFORM (in Computing)

/** program for finding the H.C.F (HIGHEST COMMON FACTOR) of given set of Numbers **/

Output: ( using GNU GCC Compiler with code::blocks IDE)  

/** c program to sort the marks of the students with their names using function **/ original post

  Output: ( using GNU GCC Compiler with code::blocks IDE) output 1: (here the output of the program after entering all values) output 2: (output to show if the size >… Continue Reading C PROGRAM TO SORT MARKS OF STUDENTS WITH THEIR NAMES USING FUNCTION

/** C PROGRAM TO SORT AN ARRAY USING FUNCTION **/

Output: ( using GNU GCC Compiler with code::blocks IDE)  

/** C PROGRAM TO FIND THE AVERAGE OF MARKS USING FUNCTION **/

Output: ( using GNU GCC Compiler with code::blocks IDE )  

/***  THIS C PROGRAM TAKES A LINE OF STRING AS INPUT AND PRINTS THE VOWELS AND THE COUNT OF VOWELS OCCURRED IN IT  ***/

OUTPUT:

/** C PROGRAM TO PRINT MATRIX IN SNAIL SHELL FORMAT **/ //for printing matrix as in the below given format //   01  02  03  04 //   12  13  14   05 //   11  16  15   06 //  10  09  08  07

  Output: ( using GNU GCC… Continue Reading C PROGRAM TO PRINT MATRIX IN SNAIL SHELL WAY

/* C Program to find Factorial of given Number using Function */

Sample Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )  

/** C Program to find the Factorial of Given Number **/

Sample Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); ) For C# Program :  C# Program to Find Factorial of Number  

/** C Program to Print Multiplication Table of a given Number **/

Sample Output : ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )  

/* To Find Whether Number is Palindrome or Not */

Sample Output:( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/** To Find Reverse Of a Number **/

Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/* c program to print prime numbers between given range */

  Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/ * c program to print Prime Numbers Between 1 and n * /

Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/ * C program to find the Number is Prime or not-Prime */

  Output: (using GNU GCC Compiler with Code::Blocks Compiler)  

/* C Program to find Greatest of Two Numbers Using Conditional Operator.. */

Sample Output: ( using GNU GCC Compiler with Code Blocks IDE )