• 0 Posts
  • 10 Comments
Joined 4 years ago
cake
Cake day: October 3rd, 2021

help-circle









  • It could, but not necessarily.

    char **args can just mean you have a pointer which points to an address, and at that address, you can get a second address. Follow the second address, there is a char saved there.

    On the other hand, char *args[] means " follow this address to find a list of characters".