/** C PROGRAM TO PRINT LOVE SYMBOL **/

Explanation : Here we are printing the ASCII value of 3 . Which gives a love shape symbol. you can also print directly by writhing the following code.  printf(” %c “,3); Output:

/*** C PROGRAM TO CONCATENATE TWO GIVEN STRINGS ***/

Output:

Many times I came across a scenario, when i was searching on net about any contents, I find many things interesting but I don’t have time to go through that pages. So, I used to save the url links of those sites or web pages for future. we can also… Continue Reading BEST WAY TO SAVE URL LINKS or WEB ADDRESS ON YOUR PC

Operating System(O.S) is a software program or a set of programs that provides the medium of communication between user and hardware of the computer and helps the user to perform various tasks on computer. It allows to run applications or programs on it.-> Operating System is a software and it… Continue Reading Definition of OPERATING SYSTEM

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(); )