Search:

Type: Posts; User: wj.z

Search: Search took 0.01 seconds.

  1. Thread: Using ascii value

    by wj.z
    Replies
    7
    Views
    9,372

    while ( text[i] != '\0' ) { text[i] =...

    while ( text[i] != '\0' )
    {
    text[i] = text[i] + (key);
    if( text[i] > 'z' ) text[i] = text[i] - 'z' + 'a' - 1
    i++;

    }
  2. Replies
    12
    Views
    1,282

    typedef struct node2 { int floornumber; ...

    typedef struct node2
    {
    int floornumber;
    struct node1 *room; // use pointer to room header
    struct node2 *nextfloor;
    } floor;
Results 1 to 2 of 2