Thread: Cant use as function...?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11
    Registered User
    Join Date
    Jun 2008
    Posts
    114
    using islower() i get a error
    Code:
    #include <iostream>
    #include <string>
    #include <windows.h>
    using namespace std;
    
    int main()
    {
      string theWord = ""; // do not need an array at all
    
      cout << "Hello their input some words: ";
      getline (cin,theWord=islower());
      
    for ( int i = 0; i < theWord.size(); i++ ) {
            cout << theWord[ i ] << "";
            Sleep(100);
        }
    return 0;
    }
    to few arguments to function


    edit: Same with upper same error
    Last edited by Nathan the noob; 02-18-2009 at 10:03 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Compiling sample DarkGDK Program
    By Phyxashun in forum Game Programming
    Replies: 6
    Last Post: 01-27-2009, 03:07 AM
  2. Seg Fault in Compare Function
    By tytelizgal in forum C Programming
    Replies: 1
    Last Post: 10-25-2008, 03:06 PM
  3. Another syntax error
    By caldeira in forum C Programming
    Replies: 31
    Last Post: 09-05-2008, 01:01 AM
  4. Replies: 28
    Last Post: 07-16-2006, 11:35 PM
  5. const at the end of a sub routine?
    By Kleid-0 in forum C++ Programming
    Replies: 14
    Last Post: 10-23-2005, 06:44 PM