This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
int i,j,k,m,n,p,a[20],b[20],c[30]; | |
printf("Give size of first list:"); | |
scanf("%d",&n); | |
printf("Give elements of first list:"); | |
for(i=1;i<=n;i++) | |
scanf("%d",&a[i]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Google Search Script | |
#!/bin/sh | |
if [ "$3" = "" ] | |
{if [ "$2" = "v" ] | |
then | |
google-chrome http://www.google.com/search?q="$1 -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mkv|mp4|avi)" | |
elif [ "$2" = "m" ] | |
then | |
google-chrome http://www.google.com/search?q="$1 -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mp3|wma|aac|flac)" | |
fi} |
NewerOlder