Tell me why you say that you want me
All you ever do girl is push all my buttons
You always bring me down in public
When nobody's around you say that you love me
Make me say oh no
I see you all alone
I'm halfway out the door
Unless you turn around
And treat me right
Oh, you got me twisted
Oh, you got me twisted
I'm not someone you can just disrespect
How would you feel if you were in my shoes
Feelin' used with your heart bruised
Friday, May 21, 2010
SHE HURTED ME A LOT
friends i am so embarrased so this time i dont wanna post my things onto this blog related to engineering
"Everything But Mine"
Walking along the sky
Chasing a glimpse of you
Painting a world with stars I found inside your eyes
Up here above the haze
Everything looks so clear
Wondering what it would be like if you were here
And time takes time ([Howie:] takes time)
But I can't wait
To tell you how I feel
Oh, you're the calm when my world is crashing
My heart, my blood, my passion
Why, tell me why
You're everything but mine
I hold you close when it all goes crazy
And through it all, you'll be my lady
Why, tell me why
You're everything
Everything but mine
You don't have to be afraid
Of somebody else's touch
Just gimme a chance to prove
Just how you should be loved
And time, it takes time ([Howie:] takes time)
It's not too late
To tell you how I feel
Everything but mine
Mine I know, oh baby
Someday you'll come around
I'm gonna leave the light on
And I won't let you down
No I won't let you down
I won't let you down
You're everything but mine
You're everything but mine
You're the sun, you're the star
You're the moon, you're the rain
Love your lips, love your eyes
Drivin' me insane, oh baby, baby
Everything but mine
You're everything but mine
"Everything But Mine"
Walking along the sky
Chasing a glimpse of you
Painting a world with stars I found inside your eyes
Up here above the haze
Everything looks so clear
Wondering what it would be like if you were here
And time takes time ([Howie:] takes time)
But I can't wait
To tell you how I feel
Oh, you're the calm when my world is crashing
My heart, my blood, my passion
Why, tell me why
You're everything but mine
I hold you close when it all goes crazy
And through it all, you'll be my lady
Why, tell me why
You're everything
Everything but mine
You don't have to be afraid
Of somebody else's touch
Just gimme a chance to prove
Just how you should be loved
And time, it takes time ([Howie:] takes time)
It's not too late
To tell you how I feel
Everything but mine
Mine I know, oh baby
Someday you'll come around
I'm gonna leave the light on
And I won't let you down
No I won't let you down
I won't let you down
You're everything but mine
You're everything but mine
You're the sun, you're the star
You're the moon, you're the rain
Love your lips, love your eyes
Drivin' me insane, oh baby, baby
Everything but mine
You're everything but mine
Tuesday, February 16, 2010
Saturday, February 13, 2010
c,c++ qns
22. What will the following program do?
void main()
{
int i;
char a[]="String";
char *p="New Sring";
char *Temp;
Temp=a;
a=malloc(strlen(p) + 1);
strcpy(a,p); //Line number:9//
p = malloc(strlen(Temp) + 1);
strcpy(p,Temp);
printf("(%s, %s)",a,p);
free(p);
free(a);
} //Line number 15//
a) Swap contents of p & a and print:(New string, string)
b) Generate compilation error in line number 8
c) Generate compilation error in line number 5
d) Generate compilation error in line number 7
e) Generate compilation error in line number 1
Ans. (b)
void main()
{
int i;
char a[]="String";
char *p="New Sring";
char *Temp;
Temp=a;
a=malloc(strlen(p) + 1);
strcpy(a,p); //Line number:9//
p = malloc(strlen(Temp) + 1);
strcpy(p,Temp);
printf("(%s, %s)",a,p);
free(p);
free(a);
} //Line number 15//
a) Swap contents of p & a and print:(New string, string)
b) Generate compilation error in line number 8
c) Generate compilation error in line number 5
d) Generate compilation error in line number 7
e) Generate compilation error in line number 1
Ans. (b)
c,c++ qns
19.
void main()
{
char *s[]={ "dharma","hewlett-packard","siemens","ibm"};
char **p;
p=s;
printf("%s",++*p);
printf("%s",*p++);
printf("%s",++*p);
}
Ans: "harma" (p->add(dharma) && (*p)->harma)
"harma" (after printing, p->add(hewlett-packard) &&(*p)->harma)
"ewlett-packard"
20. Output of the following program is
main()
{int i=0;
for(i=0;i<20;i++)
{switch(i)
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default i+=4;
break;}
printf("%d,",i);
}
}
a) 0,5,9,13,17
b) 5,9,13,17
c) 12,17,22
d) 16,21
e) Syntax error
Ans. (d)
21. What is the ouptut in the following program
main()
{char c=-64;
int i=-32
unsigned int u =-16;
if(c>i)
{printf("pass1,");
if(cprintf("pass2");
else
printf("Fail2");
}
else
printf("Fail1);
if(iprintf("pass2");
else
printf("Fail2")
}
a) Pass1,Pass2
b) Pass1,Fail2
c) Fail1,Pass2
d) Fail1,Fail2
e) None of these
Ans. (c)
void main()
{
char *s[]={ "dharma","hewlett-packard","siemens","ibm"};
char **p;
p=s;
printf("%s",++*p);
printf("%s",*p++);
printf("%s",++*p);
}
Ans: "harma" (p->add(dharma) && (*p)->harma)
"harma" (after printing, p->add(hewlett-packard) &&(*p)->harma)
"ewlett-packard"
20. Output of the following program is
main()
{int i=0;
for(i=0;i<20;i++)
{switch(i)
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default i+=4;
break;}
printf("%d,",i);
}
}
a) 0,5,9,13,17
b) 5,9,13,17
c) 12,17,22
d) 16,21
e) Syntax error
Ans. (d)
21. What is the ouptut in the following program
main()
{char c=-64;
int i=-32
unsigned int u =-16;
if(c>i)
{printf("pass1,");
if(cprintf("pass2");
else
printf("Fail2");
}
else
printf("Fail1);
if(iprintf("pass2");
else
printf("Fail2")
}
a) Pass1,Pass2
b) Pass1,Fail2
c) Fail1,Pass2
d) Fail1,Fail2
e) None of these
Ans. (c)
c,c++ qns
15.
void main()
{
int count=10,*temp,sum=0;
temp=&count;
*temp=20;
temp=∑
*temp=count;
printf("%d %d %d ",count,*temp,sum);
}
Ans: 20 20 20
16. There was question in c working only on unix machine with pattern matching.
14. what is alloca()
Ans : It allocates and frees memory after use/after getting out of scope
17.
main()
{
static i=3;
printf("%d",i--);
return i>0 ? main():0;
}
Ans: 321
18.
char *foo()
{
char result[100]);
strcpy(result,"anything is good");
return(result);
}
void main()
{
char *j;
j=foo()
printf("%s",j);
}
Ans: anything is good.
void main()
{
int count=10,*temp,sum=0;
temp=&count;
*temp=20;
temp=∑
*temp=count;
printf("%d %d %d ",count,*temp,sum);
}
Ans: 20 20 20
16. There was question in c working only on unix machine with pattern matching.
14. what is alloca()
Ans : It allocates and frees memory after use/after getting out of scope
17.
main()
{
static i=3;
printf("%d",i--);
return i>0 ? main():0;
}
Ans: 321
18.
char *foo()
{
char result[100]);
strcpy(result,"anything is good");
return(result);
}
void main()
{
char *j;
j=foo()
printf("%s",j);
}
Ans: anything is good.
Subscribe to:
Posts (Atom)

