Variable Types


  1. What does the following statement mean?
    int (*fp)(char*)











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    pointer to function taking a char* argument and returns an int


  1. Identify the type of the variables.
    typedef char* CHAR;
    CHAR a,b;











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    char*