*********************************************************************************
//DELETION IN ARRAY
#include<stdio.h>
#include<conio.h>
#include<process.h>
void main()
{
int n,i,pos,arr[50];
clrscr();
printf("\nEnter the number of elements in array");
scanf("%d",&n);
printf("Enter the elements\n");
for(i=0;i<n;i++)
scanf("%d",&arr[i]);
printf("\nEnter the position of element to be deleted");
scanf("%d",&pos);
if(pos>=n+1)
{
printf("Deletion not possible");
exit(0);
}
for(i=pos-1;i<n;i++)
arr[i]=arr[i+1];
printf("\nArray after deletion\n  ");
for(i=0;i<n-1;i++)
printf("%d\t",arr[i]);
getch();
}
Click here for Algorithm
*********************************************************************************  

*********************************************************************************

//LINEAR AND BINARY SEARCH
#include<stdio.h>
#include<process.h>
#include <stdlib.h>
#include<conio.h>

//LinearSearch
int lsearch()
{
    int arr[50],c,s,n,pos=-1;
    printf("\nLinear Search\n");
    printf("Enter the number of elements in array\n");
    scanf("%d",&n);
    for ( c= 0 ; c< n; c++ )
    {
        scanf("%d",&arr[c]);
    }

    printf("\nEnter the element to search\n");
    scanf("%d",&s);

    for ( c= 0 ; c< n; count++ )
    {
        if ( arr[c] == s)
        {
            printf("%d is present at location %d.\n", s, c+1);
            pos=c+1;
            break;
        }
    }
return pos
}

//Binary Search
int bsearch()
{
    int count, l, u, middle, arr[50],n,c,s;
    printf("Binary Search\n");
    printf("Enter number of elements of array\n");
    scanf("%d",&n);
    for ( c= 0 ; c< n; c++ )
    {
        scanf("%d",&arr[c]);
    }

    printf("\nEnter element to be searched\n");
    scanf("%d",&s);

    l= 0;
    u= n-1;
    mid = (l+u)/2;

    while( first <= last )
    {
        if ( arr[mid] <s)
        {
            l= mid+1;   
        }
        else if ( arr[mid]==s)
        {
            printf("%d Element found at location %d.\n",s, mid+1);
            pos=mid+1;
            break;
        }
        else
        {
            u= mid-1;
        }
        mid= (l+u)/2;
    }
return pos;
}
void main()
{
    int choice,loc;
   clrscr();
   printf("\n1.BINARY SEARCH\n2.LINEAR SEARCH\n3.EXIT\n");
    printf("\nENTER YOUR CHOICE");
    scanf("%d", &choice);

   switch (choice)
    {
    case 1:loc=bsearch();
         if(loc>1)
        bsearch();
        else
         printf("\nElement Not Found");
        break;
    case 2:loc=lsearch();
         if(loc>1)
        lsearch();
        else
         printf("\nElement Not Found");       
        break;
    case 3:
        exit(0);
        break;
     default :printf("Enter correct choice");
    }
    getch();
}
Click here for Algorithm

********************************************************************************* 

*********************************************************************************
//TRAVERSAL OF ARRAY//
#include<stdio.h>
#include<conio.h>
void main()
{
int Arr[20],i,k,U,L,n;
clrscr();
printf(“Enter the total number of elements of array:”);
scanf(“%d”,&n);
printf(“Enter the elements in the array:\n”);
for(i=0;i<n;i++)
{
printf(“Element number [%d] is “,i);
scanf(“%d”,&Arr[i]);
}
L=0;//lower bound
U=n;//upper bound
k=L;
printf(“\n”);
printf(“TRAVERSAL\n”);
while(k<U)
{
printf(“Element number [%d] is %d\n”,k,A[k]);
k=k+1;
getch();
}
Click here for Algorithm
*********************************************************************************

*********************************************************************************
//INSERTION IN ARRAY
#include<stdio.h>
#include<conio.h>
void main()
{
int pos,n,i,ele,arr[50];
clrscr();
printf("Enter the number of elements in array");
scanf("%d",&n);
printf("Enter the %d elements\n",n);
for(i=0;i<n;i++)
scanf("%d",&arr[i]);
printf("Enter the position");
scanf("%d",&pos);
printf("Enter the value to insert");
scanf("%d",&ele);
for(i=n-1;i>=pos-1;i--)
arr[i+1]=arr[i];
array[pos-1]=ele;
printf("\nArray \n ");
for(i=0;i<=n;i++)
printf("%d\t",arr[i]);
getch();
}
Click here for Algorithm
*********************************************************************************  

For this trick you need a keyboard which has capslock, numlock  and scrolllock indicator.
Write the code shown below in the notepad and save it as key.vbs .

Set key =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 50
key.sendkeys "{CAPSLOCK}"
key.sendkeys "{NUMLOCK}"
key.sendkeys "{SCROLLLOCK}"
loop


Now open the key.vbs and you will see the capslock, numlock and scrolllock indicator bliinking alternatively.

Note:To stop this process open task manager and then stop the process shown below




Followers