This is the
the bright future.
You get an overhyped game.
I put in D&D rulebook.
Relax my friends, Walt is just joking. He meant that post count is not indicaiton of someone's helpfulness or contribution in this forum, with which I wholly agree. Take me for example, I am just a white hat spammer... :D
mad website - crazy world
You get Lara Croft.
I put in a blanket.
Spiderman III - web of intrigue
You get me !!! :D
I put in an anime freak.
ocean's eleven - movie
You get to join his group.
I put in a Jukebox.
in the darkness
you will see
You guys are making a big issue out of this fun game... :D
Incredible fans of Iron Maiden began kissing their bosses while commencing to destroy projects.
province
Heh, from my past experiences (Mr. WaltP, Walter...) I guess you are much of a "formal" hating guy... :D
Don't get too excited kids, here comes someone with a 5 star rating... :D
You get someone who knows a lot about you.
I put in a penguin.
Cry me a river - Justin Timberlake
oh... and no other database format to my knowledge allows for multimedia, or files in general to be stored within a field, which is the purpose for designing this structure. If i am wrong PLEASE let me know.
Ever heard of the BLOB datatype....
Building something that famous requires a lot of planning and expertise by your side. How many years of developement experience do you have under your belt ? How many people have you by your side ? How far have you reached in this endeavour of yours? Building a database might require many things which might not be apparent to you right now.
Yay, PM notifications for code snippets... :D
No, I ain't the only one in 5K range. There are three people ahead of me... :D
Um....I thought your real name was Walter :o
Don't give a
True fans of Iron Maiden love kissing their wives while witnessing to dark-infested visions.
Ya know, this world is really a strange place.
no matter what
missy
Ideals..hmm. One doesn't get to hear that word nowadays.
molting - moulding
True fans of Iron Maiden stopped loving their wives while witnessing to dark-infested visions.
You get a computer controlled assasin.
I put in some conch shells.
the kind of
love towards her
Psst..don't let Walter hear this. He can infract you, you know. :D
epistle
pickle
You get a happy Bill Gates.
I put in some leaves.
True fans of Iron Maiden started loving their wives while seeing dark-infested visions.
neurotic - mass of nerves
Flasks are the containers in which we keep chemicals.
girl you love.
Light my fire - The doors
and a cheerful
Think about it this way, you have one star, the newbies have none.. :D
It must be some problem with your installation or your OS. Try reinstalling it and if it still doesn't seem to satisfy you, switch to a new IDE and compiler.
It's actually capped at 10 stars. No new stars for me.
Congratulations girly on the 10K postings. I ain't too far away, just need 5K more to reach you... :sad:
As far as the stars are concerned, you can always come up with something innovative, like keeping a shiny animated and a somewhat bigger star which denotes 10K posting mark. Don't tell me you haven't thought about it yet..:twisted:
Double quoted literals are used to define strings, while single quoted literals for characters. Since you are creating an array of characters, you need to enclose the O in single and not double quotes like Wolfy has already said.
Your program doesn't work becuase you never assign a value to 'ch'. Try adding ch = input[i];
inside the for loop.
Oh and btw, use of global variables is a bad programming practice, avoid it. Also don't do redundant comparisions.
for(int i = 0; i < length; ++i)
{
ch = tolower(input [i]);
if(ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u')
++vowels;
// remaining code here
}