Posts

Program to sort numbers using counting sort and save the o/p in a file using FILE handling

/********************************************************************* * Program to sort numbers using counting sort and save * the o/p in a file using FILE handling **********************************************************************/ #include<stdio.h> #include<stdlib.h> #define MAXSIZE 500 void selection(int elements[], int maxsize); int elements[MAXSIZE],maxsize; void main() { int i; FILE *f; printf("\nHow many elements you want to sort: "); scanf("%d",&maxsize); printf("\nEnter the values one by one: "); for (i = 0; i < maxsize; i++) { printf ("\nEnter element %i :",i); scanf("%d",&elements[i]); } f=fopen("a.txt","w"); if(f==NULL) { printf("\nUnable to write in to the file\n"); exit(1); } //fprintf(f,"\nArray before sorting:\n"); //for (i = 0; i < maxsize; i++) //fprintf(f,"[%i], ",elements[i]); //fprintf (f,"\n"); selection(elements,maxsize); /...

Javascript Program

Image
 1) EVENT DRIVEN CLIENT SIDE SCRIPT. STEP 1 – EVENT.HTML <html> <head> <title> Event driven </title> </head> <body> <input type=”button” value=”Colors” OnMouseOver=window.setTimeout(“f1()”,1200);> <script language=”javaScript”> function f1() { document.bgColor=”orange”; window.setTimeout(“f2()”,1200); } function f2() { document.bgColor=”white”; window.setTimeout(“f3()”,1200); } function f3() { document.bgColor=”green”; window.setTimeout(“f4()”,1200); } function f4() { document.bgColor=”purple”; window.setTimeout(“f6()”,1200); } function f5() { document.bgColor=”cyan”; window.setTimeout(“f6()”,1200); } function f6() { document.bgColor=”brown”; window.setTimeout(“f7()”,1200); } function f7() { document.bgColor=”orange”; window.setTimeout(“f1()”,1200); f1(); } </script> </b...