English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

All categories - 18 October 2006

Arts & Humanities · Beauty & Style · Business & Finance · Cars & Transportation · Computers & Internet · Consumer Electronics · Dining Out · Education & Reference · Entertainment & Music · Environment · Family & Relationships · Food & Drink · Games & Recreation · Health · Home & Garden · Local Businesses · News & Events · Pets · Politics & Government · Pregnancy & Parenting · Science & Mathematics · Social Science · Society & Culture · Sports · Travel

How do I get rid of chipmunks (no violence please) that are burrowing in to my gardens? They are starting to cause damage, i.e., sidewalk shifting, rock wall pulling away from foundation. Any suggestions GREATLY appreciated.

2006-10-18 12:34:09 · 6 answers · asked by Ziva 3 in Garden & Landscape

2006-10-18 12:34:07 · 10 answers · asked by madgirlmadhouse 1 in Mathematics

When a search engine finds my web site " http://www.pecanworld.com " , it displays the title perfectly but under the title are random words from my navigation bar. How can I choose what is displayed under the title by a search engine?

This htm code is displayed under the title line but the engines do not display it. What am I doing wrong?

2006-10-18 12:34:06 · 3 answers · asked by doug1kid 2 in Programming & Design

Olgas Down

2006-10-18 12:34:04 · 1 answers · asked by Heinz D 1 in Music

2006-10-18 12:34:03 · 13 answers · asked by Anonymous in Polls & Surveys

No asking for more wishes. You have one and that's it. You can be as greedy or as giving or noble or selfish as you want. But all you have is one wish. So what's it going to be? Now think of this before you make your wish, be careful of what you wish for. You might get it only to find out that you actually didn't want it or need it in the first place. So think about your answer before you give it.

2006-10-18 12:34:00 · 12 answers · asked by jdnmsedsacrasac1 4 in Other - Society & Culture

How do you phrase it on the invitations that you don't want gifts?

2006-10-18 12:33:55 · 19 answers · asked by pastor_fuzz_1 3 in Marriage & Divorce

A friend had her baby today and its made me feel all tingly inside, lol....just thought I would share it with you all.

2006-10-18 12:33:54 · 8 answers · asked by Led*Zep*Babe 5 in Religion & Spirituality

0

IN GAME 6

2006-10-18 12:33:52 · 8 answers · asked by Anonymous in Baseball

2006-10-18 12:33:41 · 1 answers · asked by C.D. Riley 2 in Movies

i mean every game was close tight except for game 2 and 4. and even those blowouts game were cool.

2006-10-18 12:33:41 · 8 answers · asked by dechouden3 1 in Basketball

We're not doing anything wrong. I mean, of course, EVERYBODY sins, but at least we try not to. We're just trying to help other non believers. Whats wrong with that?

2006-10-18 12:33:36 · 32 answers · asked by Anonymous in Religion & Spirituality

audacity
singularly
fluently
trifles

2006-10-18 12:33:20 · 6 answers · asked by ♥ P r I n C e s S ♥ 1 in Homework Help

2006-10-18 12:33:18 · 17 answers · asked by Reanna C 1 in Music

i know how to french kiss a guy but i couldent kiss him but when i tried i pulled away know i fill stupid whats wrong with me what do i do

2006-10-18 12:33:09 · 12 answers · asked by korin c 1 in Singles & Dating

my contract date is in one week ,,,who has to be there, and what do i need to know, thanks so much for any advice.

2006-10-18 12:33:09 · 3 answers · asked by pinky 3 in Renting & Real Estate

2006-10-18 12:32:58 · 14 answers · asked by smtwtfs_04 3 in Polls & Surveys

I feel that everyday and i HATE it.

btw i do pray about it

2006-10-18 12:32:56 · 25 answers · asked by strengthfornow 1 in Religion & Spirituality

I need this for my physics exam in about 4 hours time..

like mass = what?

like a formula.

2006-10-18 12:32:55 · 4 answers · asked by brinkhaul 1 in Primary & Secondary Education

I wrote a programme in C, but switch case is not working. when PRESS 1 or 2 or others then it says that it is wrong choice. tell me what problem it has.
I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer.
Prog. is:

#include
#include
void calsum(int a,int b);
void calsub(int a,int b);
void calmul(int a,int b);
void caldiv(float a,float b);
/*void calmod(int a,int b); */
void calsqr(int a);
void calcue(int a);
void calfac(long int a);
void main()
{
int l,m,n,ch;
clrscr();
printf("\t\t==========\n");
printf("\t\t Menu ");
printf("\t\t==========\n");
printf("\t\t 1 Add\n");
printf("\t\t 2 Sub\n");
printf("\t\t 3 Mul\n");
printf("\t\t 4 Div\n");
printf("\t\t 5 Factorail\n");
printf("\t\t 6 Square\n");
printf("\t\t 7 Cube\n");
/*printf("\t\t 8 Mod\n"); */
printf("\t\t Enter your choice \n");
scanf("%d",ch);
printf("\t\t =====\t");
switch(ch)
{
case 1:
printf("\t\tEnter two number : ");
scanf("%d%d",&l,&m);
calsum(l,m);
break;
case 2:
printf("\t\tEnter two numbers " );
scanf("%d%d",&l,&m);
calsub(l,m);
break;
case 3:
printf("\t\t Enter two numbers" );
scanf("%d%d",&l,&m);
calmul(l,m);
break;
case 4:
printf("\t\t Enter two numbers : ");
scanf("%s%s",&l,&m);
caldiv(l,m);
break;
case 5:
printf("\t\t Enter any no : ");
scanf("%ld",&l);
calfac(l);
break;
case 6:
printf("\t\t Enter any no : ");
scanf("%d",&l);
calsqr(l);
break;
case 7:
printf("\t\t Enter any no : ");
scanf("%d",&l);
calcue(l);
break;
/*
case 8:
printf("\t\t Enter any no : ");
scanf("%d",&l);
calmod(l);
break;*/
default:
printf("\t It is wrong choice : ");
}
getch();
}
void calsum(int a,int b)
{
int c;
c=a+b;
printf("Addition=%d",c);
}
void calsub(int a,int b)
{
int c;
c=a-b;
printf("Substance=%d",c);
}
void calmul(int a,int b)
{
int c;
c=a*b;
printf("Multiply=%d",c);
}
void caldiv(float a,float b)
{
float c;
c=a/b;
printf("Divide=%d",c);
}
void calsqr(int a)
{
int c;
c=a*a;
printf("Square=%d",c);
}
void calcue(int a)
{
int c;
c=a*a*a;
printf("Cube=%d",c);
} /*
void calmod(int a,int b)
{
int c;
c=a%b;
printf("Mod=%d",c);
} */
void calfac(long int a)
{
long int i,fct;
fct=1;
for(i=a;i>=1;i--)
{
fct=fct*i;
}
printf("Factorail=%d",fct);
}

2006-10-18 12:32:54 · 3 answers · asked by Pushpendra 1 in Programming & Design

In as much detail and plain english as possible

2006-10-18 12:32:54 · 4 answers · asked by Anonymous in Mathematics

2006-10-18 12:32:51 · 17 answers · asked by X 2 in Government

of your friends,family,strangers,or not at all?

2006-10-18 12:32:46 · 19 answers · asked by evian 6 in Polls & Surveys

I saw the movie "The Break Up" and it's like looking in the mirror. It is exactly what we are going through right now, except we are married with 2 kids. I cried the last half of the movie b/c I felt like it was me. I am an artist and he's really into video games, but he is so unwilling to do anything to show that he really cares about me or our family. He works everyday for us and I appreciate that, but I just want to feel like I mean something to him, that he loves me and wants to do things with me. We havn't gone out together in a long time and when we do go out we always go see a movie that he wants to see. Every weekend I find myself home alone with the kids while he goes out with the guys and everytime I ask him to do something I would like (even cuddling) he will NOT do it. Everything he does is for him. He won't even play with his son b/c he doesn't want to. I cook, clean, massage him, get him drinks, and whatever he wants. The guy changes in the movie, is it really possible?

2006-10-18 12:32:43 · 21 answers · asked by Ferosia 3 in Marriage & Divorce

i mean i need to know

2006-10-18 12:32:41 · 5 answers · asked by cierra m 1 in Hair

fedest.com, questions and answers