This Blog is completely dedicated to its viewers... use of the content available on this blog for commercial purpose is forbidden until I(SkanD GupT) give permission...
Sunday, July 31, 2011
Saturday, July 30, 2011
Friday, July 29, 2011
Something in Rumble--SkanD
Hello...friends..
you must br thinking what is this..??
well
this is something...
appeared before me..
when I was
just flowing my brush
in Photoshop..
It was like a glimpse of it..
But...
what I caught of this glimpse..
Is presented before you..
..
I hope You'll like it..
and
can you see it clear enough
that you can say
what is It..??
If you can..
then
please go ahead..
Thank you..
...SkanD GupT...
Thursday, July 28, 2011
SkanD sketches his bro..
This time..
...It is my Brother...
sketched out
..when he was slept..
...thank you...
SkanD GupT
Friday, July 22, 2011
Thursday, July 21, 2011
Just looK and feel the KooL-SkanD
Labels:
creative,
experience,
friend,
life,
SkanD,
Wallpapers
Wednesday, July 20, 2011
SkanD doing Sketching..-- Boy writting]
hello guys ..This is the second video post
showing...my sketching skill..
well this is not as I wanted..but here it is..!!!
plz enjoy..!!!
SkanD LizarD...MirrorSSSSS
Labels:
Anime,
creative,
experience,
life,
SkanD,
Sport,
Wallpapers
BirD FlyinG in SkanD's dream 2
Tuesday, July 19, 2011
BirD FlyinG in SkanD's dream
Well friends..
Imagination is the Key
and
Implementaion of Imagination
is the key of success
Thank you...(SkanD)
This one is completely made in Photoshop
firstly
Art Brush
then
smudging
then
filtering,effects,blurring,texting,blending
and
lil more
were done
...THE END...
SkanD doing Sketching..!!!
This is just to show how to sketch out things
I hope
YoU'll enjoy it...!!!
Monday, July 18, 2011
Fantasy Aart
Labels:
Anime,
cartoon,
creative,
experience,
life,
SkanD,
Wallpapers
StacK programme in 'C'
hello friends...
this is a code implementing stack(PusH, PoP & Display function)..
Software Used : Turbo C++
Code:
#include
#include
int push(int *, int, int); //PusH fxn-adds item in stack
int pop(int *,int); //PoP fxn - deletes item from stack
void display(int *, int); //Display fxn -displays stack
int menu(); //Menu fxn-ask wat user wanna do
int again(); //Again fxn-ask to continue..
int top,maxstack; //global variable
void main()
{
int stack[6],item,i,j,choice,askmore;
maxstack=5; //stack size defined
top=-1;
clrscr();
printf("hello\n");
while(choice!=3)
{ clrscr();
printf(" top =%d elements = %d\n",top,top+1);
display(stack,top);
printf("\n\n\n ");
choice=menu(); //menu fxn is called for asking user preference
switch(choice) //switch-to according to user's choice
{
case 1: top=push(stack,top,maxstack); //calls PusH & value of ToP is returned
printf(" top =%d",top);
askmore=again("enter");
if(askmore==1) //asks for more PusH operation cont. if yes else it breaks
{ top=push(stack,top,maxstack);
printf(" top =%d",top);
}
break;
case 2: top=pop(stack,top); //calls PoP fxn & returns ToP value
printf(" top =%d",top);
askmore=again("delete"); //ask for more PoPing..so continues if user says YES
if(askmore==1)
{ top=pop(stack,top);
printf(" top =%d",top);
}
break;
case 3: display(stack,top); //called for Display only
break;
case 4: exit(0); //user can exit on hitting 4
}
getch(); // to stop at scareen after each cycle of while looP
}
getch();
}
int push(int *stack,int top,int maxstack) //body of Push fxn
{
int item; //item to be added in stack is initialised
printf("\n Enter item in stack\n ");
scanf("%d",&item); //Item entered by user
if(top==maxstack) //Overflow condition is checked
{printf("overflow");
}
else //on nonoccurence of overflow..push operation is performed
{top=top+1; //by incrementing ..TOP is set to Zer0
stack[top]=item; //Item inserted in stack
}
printf(" %d is at %d",stack[top],top); //position of item in stack is displayed
return(top); //returns 'TOP' value
}
int pop(int *stack,int top) //PoP fxn Body
{ int item; //Item to be deleted is defined
printf("\n Deleting item"); //just to show control
if(top==-1) //checks occurence of UNDERFLOW condition
{printf("Underflow");
}
else //On nonoccurence of UNDERFLOW ..item at TOP of stack is deleted
{top=top-1; //By decrementing ,TOP is made to point the Item present next to the
ITEM to be deleted.
item=stack[top]; //Item is placed at the top of stack
}
printf("\n Item deleted = %d",stack[top+1]); //shows Deleted ITEM and its position in stack
assuring that deleted IteM was the TOPmost one
printf("\n Item at the new top = %d",item); //displays new item at the ToP
return(top); //returns TOP
}
void display(int *stack,int top)
{ int i;
printf("\n stack is as :");
for(i=0;i<=top;i++) //Displays items present in stack upto TOP of stack from bottom
{
printf("%d ",stack[i]);
}
}
int menu() //menu fxn body is created
{ int choice;
printf("\n 1.PUSH 2.POP 3.Display 4.Exit \n\n"); //Menu created...and displayrd
scanf("%d",&choice);
return(choice);
}
int again(string) // asking for continue ..if wanna do-click 'YES'...else click 'NO'
{ int askmore;
printf("\n\n\nWant to %s more...press accordingly...",string);
printf("\n 1.yes 2. no \n\n ");
scanf("%d",&askmore);
return(askmore); //return..the reply from user in form of integer
-- 1. for 'YeS' & 2. for 'NO'
}
this is a code implementing stack(PusH, PoP & Display function)..
Software Used : Turbo C++
Code:
#include
#include
int push(int *, int, int); //PusH fxn-adds item in stack
int pop(int *,int); //PoP fxn - deletes item from stack
void display(int *, int); //Display fxn -displays stack
int menu(); //Menu fxn-ask wat user wanna do
int again(); //Again fxn-ask to continue..
int top,maxstack; //global variable
void main()
{
int stack[6],item,i,j,choice,askmore;
maxstack=5; //stack size defined
top=-1;
clrscr();
printf("hello\n");
while(choice!=3)
{ clrscr();
printf(" top =%d elements = %d\n",top,top+1);
display(stack,top);
printf("\n\n\n ");
choice=menu(); //menu fxn is called for asking user preference
switch(choice) //switch-to according to user's choice
{
case 1: top=push(stack,top,maxstack); //calls PusH & value of ToP is returned
printf(" top =%d",top);
askmore=again("enter");
if(askmore==1) //asks for more PusH operation cont. if yes else it breaks
{ top=push(stack,top,maxstack);
printf(" top =%d",top);
}
break;
case 2: top=pop(stack,top); //calls PoP fxn & returns ToP value
printf(" top =%d",top);
askmore=again("delete"); //ask for more PoPing..so continues if user says YES
if(askmore==1)
{ top=pop(stack,top);
printf(" top =%d",top);
}
break;
case 3: display(stack,top); //called for Display only
break;
case 4: exit(0); //user can exit on hitting 4
}
getch(); // to stop at scareen after each cycle of while looP
}
getch();
}
int push(int *stack,int top,int maxstack) //body of Push fxn
{
int item; //item to be added in stack is initialised
printf("\n Enter item in stack\n ");
scanf("%d",&item); //Item entered by user
if(top==maxstack) //Overflow condition is checked
{printf("overflow");
}
else //on nonoccurence of overflow..push operation is performed
{top=top+1; //by incrementing ..TOP is set to Zer0
stack[top]=item; //Item inserted in stack
}
printf(" %d is at %d",stack[top],top); //position of item in stack is displayed
return(top); //returns 'TOP' value
}
int pop(int *stack,int top) //PoP fxn Body
{ int item; //Item to be deleted is defined
printf("\n Deleting item"); //just to show control
if(top==-1) //checks occurence of UNDERFLOW condition
{printf("Underflow");
}
else //On nonoccurence of UNDERFLOW ..item at TOP of stack is deleted
{top=top-1; //By decrementing ,TOP is made to point the Item present next to the
ITEM to be deleted.
item=stack[top]; //Item is placed at the top of stack
}
printf("\n Item deleted = %d",stack[top+1]); //shows Deleted ITEM and its position in stack
assuring that deleted IteM was the TOPmost one
printf("\n Item at the new top = %d",item); //displays new item at the ToP
return(top); //returns TOP
}
void display(int *stack,int top)
{ int i;
printf("\n stack is as :");
for(i=0;i<=top;i++) //Displays items present in stack upto TOP of stack from bottom
{
printf("%d ",stack[i]);
}
}
int menu() //menu fxn body is created
{ int choice;
printf("\n 1.PUSH 2.POP 3.Display 4.Exit \n\n"); //Menu created...and displayrd
scanf("%d",&choice);
return(choice);
}
int again(string) // asking for continue ..if wanna do-click 'YES'...else click 'NO'
{ int askmore;
printf("\n\n\nWant to %s more...press accordingly...",string);
printf("\n 1.yes 2. no \n\n ");
scanf("%d",&askmore);
return(askmore); //return..the reply from user in form of integer
-- 1. for 'YeS' & 2. for 'NO'
}
...StacK ...
Sunday, July 17, 2011
My Firends!!!
If anyone else wants thier name...
plz write ur name
and wallpaper wud be produced..
u can check later..
..
...thank you...
New TrY...-Wallpaper
Firstly
Illustrated
then
Photoshopped
when
all effects were put
at last
Corel Draw
was used
just for experimentation
&
to put my symbol on it
...thank you...
Saturday, July 16, 2011
BULL TrYYYY....!!!!
BuLL 4 RavS |
Hey Buddy.. ..!!!
so do you like any...
I tried many..!!!
If somehow
u like any or mnay..!!!
let me know..!!!
else
I'll make any or many..!!!
and
If u wanna suggest..any
don't hesitate !!!
even if there are many..!!!
bcz
I m here to deal with
any or many...!!!
Friday, July 15, 2011
Thursday, July 14, 2011
SkanD NorM...!!!
Find out synonym???
1. Sagacious
to be continued...
&
alongwith synonym let's see...
we know exact meaning of how many of these words......???
Be Honest..plz..!!!
this is just to check my memory and to power up my Vocab..
a. appealing b. placid
c. wise d. shaky
2. Lethal
a. conventional b. deadly
c.averse d.demonstrative
3. Feint
a. religious b. digress
c. pretense d. swoon
to be continued...
&
alongwith synonym let's see...
we know exact meaning of how many of these words......???
Be Honest..plz..!!!
this is just to check my memory and to power up my Vocab..
Wednesday, July 13, 2011
Beautiful field!!!
Monday, July 11, 2011
SkanD In Banyan Tree(Meditation)
Friends...This tree was too huge....hard to imagine...man..!!!
Its prop roots are damn strong..and long .man..!!!
Hieght -width just don't ask...!!!(hard to measure..)
..
I just lived my dream by sitting in it....It was just unexplanable...!!!
Feeling was amazingly KooL..!!!
SkanD Angel Only (WaLL 9)
SkanD Angel Only (WaLL 6)
Sunday, July 10, 2011
Life so Far>>>>!!!
This post is about..
How was your journey of life with Mr.SkanD Gupt..???
These things will be added in Mr.SkanD's Biography..
and
doin this bcz I want make it on my own...just to avoid manipulations
Wednesday, July 6, 2011
Delicate Hands-SkanD Art 1
SkanD & kane (Photshop work 2)
This post is completely dedicated to..."Kane"
One of the best wrestlers I know...
well this was also made 2 or 3 years ago...
actually I was trying something new....
that time i was just a novice.....in graphical world...
such old work reminds ...
what practice can give us...
well
"Practice is the key to perfection "
One of the best wrestlers I know...
well this was also made 2 or 3 years ago...
actually I was trying something new....
that time i was just a novice.....in graphical world...
such old work reminds ...
what practice can give us...
well
"Practice is the key to perfection "
SkanD Angel Reflection(WaLL 3)
Skand-Tiger( Photshop work 1)
This pic was made by SkanD GupT long ago..I think Around 2 or 3 years ago...
It is completely edited in "Adobe Photoshop CS"..
In this I took a pic (of tiger)
Then Everything beside tiger is made in Photshop...
well next time..
I'll make my own PantheR...
If Guys wanna See....
See this blog is completely dedicated to its viewers..
So only if u guys say...I'll do..
Otherwise i'll make but wudn't post it here..!!!
so reply soon...guys
It is completely edited in "Adobe Photoshop CS"..
In this I took a pic (of tiger)
Then Everything beside tiger is made in Photshop...
well next time..
I'll make my own PantheR...
If Guys wanna See....
See this blog is completely dedicated to its viewers..
So only if u guys say...I'll do..
Otherwise i'll make but wudn't post it here..!!!
so reply soon...guys
SkanD Angel (WaLL 1)
hello friends....
this is just a sample of what will be coming next...
Though few things remaining...
will be Modified in next versions of.
unfortunately...i can't show you people...all of them...
bcz for next 3 days I'll not be able to create any post..
so plz my friends...
Just keep patience till then..
this is just a sample of what will be coming next...
Though few things remaining...
will be Modified in next versions of.
unfortunately...i can't show you people...all of them...
bcz for next 3 days I'll not be able to create any post..
so plz my friends...
Just keep patience till then..
Subscribe to:
Posts (Atom)