Tuesday, December 28, 2010
Full Form of ABHINAV
Well friends, it was really tough for me to design the full form of ABHINAV based on my blog's niche indeed. After a lot of permutations & combinations, my grey cells finally ended up with
'A Blog Hosting Intra-engineering Notions of Academic Ventures'.
The word 'Abhinav' is Indian word which means 'new' or 'novel'. So, it was rather a necessity that it's expanded form must mean something near to its original meaning & also must reveal my Blog's niche based on my profile as a blogger. After all, being an Abhinav this Abhinav wanted an abhinav expanded form for the word Abhinav, concealing the Abhinav'ness of Abhinav the Prince. Hope you understand.
Moreover, I'd like to appreciate if you can suggest me a different full form for ABHINAV. I'd also encourage your contribution to my blog,(if you want). Furthermore, please give your comments on My Full form for ABHINAV.
Subscribe to:
Post Comments
(
Atom
)


althoug i know nthing of how to make all these but personally and frankly speaking as a visitor..i wuld like suggest you to make the background and the layouts a bit better and distinct..and the word intra-engineering..'inovative' i may suggest!!
ReplyDeletewell,donno y u didnt get my prevs cmmnt,so doin it al over agn...dis 1 is really good bro...n abt d layouts,i thnk dey r really good...n d 'abhinav' symbol is jst 2 amazing...
ReplyDeleteWell both of the previous comments are contrasting each other, but
ReplyDelete@dan dis is wat i call a comment, i'll surely work on da layout to make it more better. n
@souvik it took about an hour to design this symbol with photoshop, feel glad for its success.
/* Code Name: Folder Lock
ReplyDeleteAuthor : Soumalya Dutta
Contact :9830389535
*/
#include
#include
#include
#include
#include
#include
#include
FILE *f1;
void hide(char s[],char fol[])
{
f1=fopen(s,"a+");
fprintf(f1,"%s",fol);
fclose(f1);
}
void display(char s[])
{
char ch;
f1=fopen(s,"r+");
while((ch=getc(f1)!=EOF))
{
printf("%c",ch);
}
fclose(f1);
}
int main()
{
int t,n,i=0;
char ch,s[100],fol[100];
char str[100]="cmd /c \ attrib +s +h ";
char str1[100]="cmd /c \ attrib -s -h ";
char choice;
char drive[100];
char dir[100];
char file[100],ext[100],*ptr;
clrscr();
printf("\t****************Folder Protection Software*****************\n");
printf("\n press q to quit & other to continue.");
fflush(stdin);
ch=getchar();
while(ch!='q')
{
printf("\t P->Protect the folder \n");
printf("\t U->Unprotect the folder \n ");
printf("\t L->List of protected folder \n");
printf("\n Enter your choice.");
scanf("%c",&choice);
switch(choice)
{
case 'P':
printf("\n Enter the path of the folder to be protected \n");
scanf("%s",fol);
fnsplit(fol,drive,dir,file,ext);
strcpy(file,"DATA");
strcpy(ext,".TXT");
fnmerge(s,"D:\ ",dir,file,ext);
ptr=searchpath(s);
if(ptr==NULL)
{
t=creat(s,S_IWRITE);
}
strcat(str,fol);
hide(s,fol);
system(str);
printf("\n folder locked successfully.");
break;
case 'U' :
printf("\n Enter the path of the folder to be unprotected.");
scanf("%s",fol);
fnsplit(fol,drive,dir,file,ext);
strcpy(file,"DATA");
strcpy(ext,".txt");
fnmerge(s,"D:\ ",dir,file,ext);
puts(s);
ptr=searchpath(s);
if(ptr==NULL)
{
t=creat(s,S_IREAD|S_IWRITE);
}
strcat(str1,fol);
puts(str1);
system(str1);
printf("\n folder unlocked successfully.");
break;
}
printf("\n press q to quit.");
fflush(stdin);
ch=getchar();
}
getch();
}