Blogspot - sawankumar67.blogspot.com - computer programming
General Information:
Latest News:
Cricinfo Latest Photos 25 Aug 2011 | 03:08 am
Cricinfo Latest Photos: Get the most recent cricket photos from Cricinfo. Add the Cricinfo Latest Photos widget now!
How to increase the Internet Speed in Vista 2 Mar 2011 | 06:36 pm
The Most Important Vista Internet Speed Tweaks – Once You Can Connect New technology is fabulous when it works, but I was quite disgusted to learn that Microsoft implemented IPv6 on Vista and upon in...
Untitled 19 Feb 2011 | 05:44 pm
pay per click Make A Virus Called Matrix Speed up internet speed up to 1000000Terabytes per/second Increase Your Browsing Speed In Windows XP How TO shutdown a computer for ever Code Create a ad...
Tricks for Computer 19 Jan 2011 | 07:03 pm
pay per click Create Windows XP Live Bootable Flash Drive You will need : HP USB Disk Storage Format Tool - A freeware and can be easy found. BartPE - Bart's Preinstalled Environment Bootable - Do...
Introduction about me 18 Jan 2011 | 10:04 pm
pay per click Hi Friends I will try to full fill your need about programming languages. Any problem tell me ,Don't be hagitate with me . mail to sawankumar67@gmail.com or Comment them.
Circular Queue modified 17 Jan 2011 | 11:21 pm
pay per click /*wap to operaton on queue*/ #include<stdio.h> #include<conio.h> #define MAX 5 void insert();//fn prototype for insertion void del();//fn prototype for deletion void display();//f...
Binary Search 17 Jan 2011 | 11:20 pm
pay per click /*program to search an element using binary search.*/ #include<stdio.h> #include<conio.h> int a[10],i,item,n,low,high,mid,flag; void main() { void search(int a[],int n); clrscr()...
Circular Queue 17 Jan 2011 | 11:20 pm
pay per click /*wap to operation on circular queue*/ #include<stdio.h> #include<conio.h> int front=-1, rear=-1, max=10, q[10]; void push(); int pop(); void main() { int i,j,n,queue[100];...
Linear Search 17 Jan 2011 | 11:19 pm
/*program to search an element using linear search.*/ #include<stdio.h> #include<conio.h> int i,item,n; void main() { int a[100]; void search(int a[],int n); clrscr(); printf("enter the size ...
Quick Sort 17 Jan 2011 | 11:18 pm
/*wap to sort element of array using Quick sort*/ #include<stdio.h> #include<conio.h> int a[100],l,h,i,n; void main() { void input(void); input(); getch(); } void input(void) { void qsort(...