void fun(char **) - What is this function all about?

ganz6513

ganz6513

@ganz6513-IDtkCE Oct 25, 2024
void fun(char **) what is this function all about??? P.S im a beginner😁

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • KenJackson

    KenJackson

    @kenjackson-mBf7HF Sep 8, 2013

    That's not enough information. Anyone can write a function named "fun" that takes a "char **" argument.

    Did you see a function in some source code somewhere that you're asking about? If you did, post the function, or post a link to it so we can look at it and comment.
  • Sanyam Khurana

    Sanyam Khurana

    @sanyam-Nl7Zqc Sep 10, 2013

    ganz6513
    void fun(char **) what is this function all about??? P.S im a beginner😁
    Post the whole function mate, how could anyone guess, what is meant for without looking at the code?

    If possible put the whole program here.

    Always ask your questions with maximum details you can provide, it would help you to get your query solved at the earliest.

    PS: char ** means pointer to a pointer which can store address of char type variable..
  • Jeffrey Arulraj

    Jeffrey Arulraj

    @jeffrey-xA7lUP Sep 11, 2013

    Note that the function Fun will have return type Void and it will take a value Which has to be of pointer to pointer type of Data type Character