SyntaxFix
Write A Post
Hire A Developer
Questions
I just wanna add this, when you access the position of the array like
arg[n]
is the same as
*(arg + n) than means an offset of n starting from de arg address.
*(arg + n)
so arg[0] will be *arg
arg[0]
*arg