Saturday 28 January 2017

Merge sort in C programming example with explanation ~ mkniit ~ gniitsolution

Merge sort in C source code: This program provides you a simple sorting approach. This C program consists of an example code with explanation also. It is a type of sorting, which is rarely used sorting mechanism. An example program is given at the bottom.


MERGE SORT IN C

This C program is used to arrange or sort the array values in a same order as ascending order by comparing with the two values. For example if you have entered an elements like 6,9,1,-5,4 after merge sort the values will be -5,1,4,6,9.

Merge sort program:

Read More »

Pyramid structure in C program using patterns code ~ mkniit ~ gniitsolution



    Pyramid structure in C source code: This program provides you a pyramid formatted output for a given input. This can be a simple code to understand easily. It generates the pyramid shape by using patterns. It is totally based on your “n” number of input. An example program is given below.

    CREATE PYRAMID STRUCTURE IN C

    Create pyramid structure program in C is used to create the shape of pyramid by given input values. It is using many looping statements and blank spaces to create a pyramid structure exactly.
    Read More »

    Binary search in c using arrays with example program ~ mkniit ~ gniitsolution

    Binary search in C using arrays: An example C program is available here. Given source code is based on basic search operations by using the advantage of arrays. Sample code is also given below for your reference.

    BINARY SEARCH IN C

    Binary search in C program by arrays is used to search the value in a sorted array. This C code is using some sorting techniques and using binary search also. We can find the location of an element, if it is present in the array value else it will display like not found.
    Read More »

    String concatenation in C using strcat & pointers – 2 programs ~ mkniit ~ gniitsolution

    String concatenation in C programming language using strcat & pointers. This is to concatenate the given input strings as one. It is a simple concatenation source code that generates the final output.
    Here we have included the 2 example programs. They are,
    • String concatenation using strcat,
    • String concatenation using pointers
    Read More »

    Matrix multiplication program in C using arrays ~ mkniit ~ gniitsolution

    Matrix multiplication program in C is used to perform a multiplication operation. This C program of matrix multiplication is totally depends on an arrays concept. This is based on three dimensional matrix formats. Now the matrix will be multiplied by only the mathematical form. Multiply the matrix in a form of (2×3). Before going to enter this topic, We’ve already published an article about Matrix addition source code in C.


    Matrix multiplication code:

    Q: Write a c program for Matrix multiplication using arrays concept.
    Read More »

    Insertion sort in C program [Insertion Algorithm code] ~ mkniit ~ gniitsolution

    Insertion sort in C programming language using arrays. This is to sort the given input numbers in ascending order. It is a simple sorting algorithm that generates the final output. The sample source code of this insertion algorithmis given below,

    NSERTION SORT IN C

    Insertion sort in C program is used to sort the array value in any order big too small or vice-versa by using statement. For example you have entered an array value as 67231 means, it checks the first and second value and compare with the second value. If it is smaller than 2nd, it moves to first. The same repeat operations will happen for all values in the array. Finally it will display the insertion sort value as 12367.
    Read More »

    Convert fahrenheit to celsius in C programming ~ mkniit ~ gniitsolution

    Fahrenheit to Celsius program in C using basic formula. It is a type of conversion mechanism. Sample program also available for your reference. Source code of this C tutorial is given below,

    FINDING FAHRENHEIT – CELSIUS IN C

    Finding Fahrenheit to Celsius program in C is used to find the temperature value in Fahrenheit to Celsius. Basic formula for this code is {c=(5*(f-32))/9}.
    Read More »

    Bubble sort program in C using arrays, function ~ mkniit ~ gniitsolution

    Bubble sort program in C using arrays and function. It is a type of sorting mechanism. Sample program also available for your reference. Source code of this C tutorial is given below,

    BUBBLE SORT IN C

    Bubble sort program in C is used to arrange the given values in an ascending order by using arrays and functions. And also an operation of this sorting will be based on some statements like unconditional statements. We can easily get the list of output values in an order. For example, your value is 3,7,1,10,9,-88. After bubble sorting, your input will display as -88,1,3,7,9,10.
    Read More »

    C program to count vowels in a string ~ mkniit ~ gniitsolution

    Q: How to find the vowels count of a given text by using switch in C program?
    This C program is used to find the number of vowels in your given text by using a switch statement. Initially checking the character of text separately and match with case value. If the character matches with the condition, then increment by one in the vowel count or ignore the character. Finally print the number of vowels present in the given input text.

    Vowels count program in C:

    Read More »

    Game coding in C program ~ mkniit ~ gniitsolution

    C program for game design. This code is all about computer and user based play. There will be a turn for a user player & a computer. Anyone can participate this game. Just try yourself to improve your game developmentknowledge.


    SIMPLE GAME CODING IN C

    Game coding in C is used to design a game in C language like other flash and any other java games. It is an useful resource for students. It will be consider as C mini projects or school project in C.
    Read More »

    C program to find a Number is Strong or not ~ mkniit ~ gniitsolution

    C program to find a Number is strong or not. It is a simple source code that provides the output of an actual Strong number. Take care of a questions for your interviews or students exam. This is a totally free of cost code.


    NUMBER IS STRONG OR NOT IN C

    Number is strong in C program means it calculates the factorial value for the entire number. If the total of a factorial value is the same as given number, then this number is said to be a strong number. For example 125(1!+2!+5!=1+2+120=123) is weak number. Then the strong number is 145.
    Read More »

    Factorial of a number program in C ~ mkniit ~ gniitsolution

    C program to find factorial of a number. It is a simple calculation of a factorial method. This is a basic C tutorial for beginners. Sample source code for this program is given below,


    FACTORIAL IN C PROGRAM

    This C program is used to find the factorial series for “n” numbers. For example if the factorial is 3, then the calculation will be like this (3! = 3x2x1=6). It will calculate every values by using the looping statement of for loop (for(cn=num;cn>1;cn–)).
    Read More »

    C program to find a Number is Prime or not ~ mkniit ~ gniitsolution

    C program to find a Number is prime or not. It is a simple source code that provides the output of an actual Prime number. Take care of a questions for your interviews or students exam. This is a totally free of cost code.

    NUMBER IS PRIME OR NOT IN C

    Read More »

    C program to find Number is Armstrong or not ~ mkniit ~ gniitsolution

    C program to find Number is Armstrong or not. It is a simple source code that provides the output of an actual Armstrong number. Take care of a questions for your interviews or students exam. This is a totally free of cost code.


    IND NUMBER IS ARMSTRONG OR NOT IN C

    Read More »

    Fibonacci series upto ‘n’ numbers in C ~ mkniit ~ gniitsolution

    C program for Fibonacci series upto ‘n’ numbers. It is a simple source code that provides the output of an actual Fibonacci sequence up to n numbers. For this C program, questions may asked like “write a C program to find the Fibonacci series & sample Fibonacci program in C“. Take care of a questions for your interviews or students exam. This is a totally free of cost code.

    CREATE FIBONACCI SERIES UP TO N NUMBERS IN C

    Read More »

    Tuesday 3 January 2017

    Aadhar card project in Java ~ mkniit ~ gniitsolution


    Java JSP source code for Aadhar card project Like SSN in U.S


    Java jsp projects source code on Aadhar project: Aadhar concept is used to generate a unique identification number for Indian citizens. It is just like a Social Security Card (SSN) in USA. Previously we don’t have an unique identity number in India. The Indian citizens are identified by using of various identity cards like driving license, voter ID’s, passport and more. An individual was having different identity proofs. So there is a possibility for crime attempts.
    For avoiding the duplications and finding unique persons, the Aadhar card project was implemented. The Aadhar provides a UID for every citizen of India. This id card is associated with a pin number. Individual’s physical identifications are stored in the secured database. Physical identifications are, finger prints, retinal scan, thumb impressions and signature with a photographs. So there is no possibility for any duplication in Aadhar method.
    Read More »

    Civilization Game in Java ~ mkniit ~ gniitsolution

    PROJECT DETAILS:

    • Title: Civilization Game
    • Platform: Core Java
    • Option: Multiplayer and Single player game

    Abstract:

    Civilization game source code in Java: This game is a single or multiplayer strategy game. The player’s character is depends on the ruler of a civilization. It is a simple java game which is also developed for Android device platforms. Yeah! This game supports the android mobile devices as well.
    Read More »

    Java project on E-Magazine ~ mkniit

    The main aim of this On the internet Journal e-magazine Java project is to make a system that provides full functionalities & features of an On the internet Journal. An On the internet Journal contains all national & Worldwide news and other content structured into different groups. Customers are categorized to Visitors and Compensated Customers.


    E-Magazine Project Description:
    An online magazine is a guide released on the Internet, through message board systems and other types of public computer systems.
    Read More »