This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How extern is used?

How extern can be used?

In which file the variable without extern to be declared?

Or there is no such restrictions?

Parents
  • How extern can be used?

    Any C textbook should be able to explain that.

    Extern is used to access global variables/functions that have been declared in another module/file.

    In which file the variable without extern to be declared?

    In any file. As long as there's no ambiguity.

Reply
  • How extern can be used?

    Any C textbook should be able to explain that.

    Extern is used to access global variables/functions that have been declared in another module/file.

    In which file the variable without extern to be declared?

    In any file. As long as there's no ambiguity.

Children