bootstrap php Bootstrap Contact Form in PHP Unknown 13:02 1 Comment Unknown The Complete PHP Code. ( index.php ) <?php if ( isset ( $_POST [ "submit" ] ) ) { $name = $_POST [ '... Read More
c program c++ linked list programming INSERTION IN LINKED LIST AT DIFFERENT POSITION Unknown 17:18 Add Comment Unknown THIS PROGRAM IS TESTED IN DEV C++ #include<stdio.h> #include<conio.h> void insert1() { int array[100], position,... Read More
data structure linked list traversal TRAVERSAL OF LINKED LIST Unknown 17:09 Add Comment Unknown THIS PROGRAM IS TESTED IN DEV C++ #include<stdio.h> #include<malloc.h> #include<conio.h> struct s { int in... Read More
bubble insertion menu driven selection sort sorting Menu driven program of selection,bubble,insertion sort Unknown 17:04 1 Comment Unknown THIS PROGRAM IS TESTED IN DEV C++ #include <stdio.h> void bubble() { int arr[100],tmp,large,k,j,loc,i,n; printf(... Read More
bubble menu driven selection sort menu driven program of selection sort and bubble sort Unknown 16:31 Add Comment Unknown THIS PROGRAM IS TESTED AND WORKING PROPERLY!!!! #include <stdio.h> void selection() { int arr[100],tmp,large,k,j,loc,i,n... Read More