Search:

Type: Posts; User: noob programmer

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,093

    Queue function

    Suppose s structure function is defined as:


    typedef struct node {
    char *name;
    char phone[9];
    struct node *next;
    } queue;
    ...
  2. Replies
    10
    Views
    1,998

    define two functions

    Given that:


    typedef struct node {
    char *title;
    char *ISBN[10];
    struct book *next;
    } insert_queue;

    How do i write a function:
  3. Replies
    3
    Views
    1,109

    How do I define this?

    Hi all, Can anyone help me with the following definitions:

    1. Define an array of 10 integers.

    2. Define a pointer to float.

    3. Define an array of 20 pointers to char.

    4. Declare a...
  4. Replies
    9
    Views
    2,377

    True or False

    I have problem figuring out whether the following are true or false, please help:

    1. A single #include directive may name several files.

    2. An argument and its corresponding parameter must have...
  5. Hi all. Thanks for all the reply. What about...

    Hi all. Thanks for all the reply.
    What about this function char *substring(char *stra, char *strb);

    Function returns NUll when strb is not a substring of stra. On the other hand, when strb is a...
  6. write functions with pointers variables

    Hi all,

    I have trouble with the below function:

    int suffix_searching(char*str, int len, char*suffix);

    The function copies the suffix of length len of string str into string suffix and...
Results 1 to 6 of 6