Search:

Type: Posts; User: lms

Search: Search took 0.01 seconds.

  1. I'm still kind of confused..I'll keep trying to...

    I'm still kind of confused..I'll keep trying to figure it out..
  2. Help!! How to return a pointer to beginning of string??

    I'm sorry- but this is for an assignment and I am stuck.. I am trying to convert a string into uppercase..and then return a pointer to the beginning of the string in main..and then somehow copy the...
  3. Replies
    7
    Views
    1,516

    I got it!! For those who are interested... ...

    I got it!! For those who are interested...



    #include <iostream.h>
    #include <ctype.h>
    #include <string.h>

    const int MAX = 3;
    bool validID(char [][10]);
  4. Replies
    7
    Views
    1,516

    #include #include ...

    #include <iostream.h>
    #include <ctype.h>
    #include <string.h>

    bool validID(char []);

    int main (void)
    {
    char id[5];
    int count=0;
  5. Replies
    7
    Views
    1,516

    Array of strings & displaying them...

    Traveller,

    Mabye this will be clearer as to what I want to do..If I input a123,b123,c123...then it should display it



    #include <iostream.h>


    bool validID(char id []);
  6. Replies
    7
    Views
    1,516

    Array of strings & displaying them...

    I'm new to C++ am having problems with this..it is a small part of an assignment. I need to store employee id numbers in an array of strings..in the format LNNN(letter, number, number,number) then I...
Results 1 to 6 of 6