Short answer: You really should read through perlintro and perlreftut, and at least skim through perldata.

Longer answer:

my $n = shift; #I understand shift chops off the first element in an array, but what purpose does that serve?

In Perl, parameters passed to a subroutine are stored in the @_ array. (See perlintro#Writing-subroutines.)
When shift is called without an explicit argument, it operates on that array. (See shift.)

The purpose of the quoted line is to remove the first element (i.e. the first subroutine parameter) from the @_ array and store it in $n.


Also, how are the arrays (@a, @b, @c) referenced in this code?

The function consumes the first array reference (i.e. \@a) via another shift:

for my $i ( @{ shift() } ) {
It leaves the remaining array references in @_, and passes them on to a new function-call to the same function:
nFor( $n-1, @_, $i );

for my $i ( @{ shift() } ) { # I have no idea how $i get's it's value?

shift() removes the first element from @_ and returns it - in this case it happens to be an array reference.
@{ ... } performs array dereferencing - i.e. when given an array reference, it returns the actual array. (See perlreftut and References quick reference).
for my $i ( ... ) { ... } loops over all elements of the list defined within the round brackets, storing the current element in $i each time. (See perlintro#foreach.)


nFor( $n-1, @_, $i ); #why does the top nFor call for 4 variables, while this one only calls for 3?

When an array is placed in a comma-separated list, it is "flattened" - i.e. it's as though all its elements had been individually placed in that spot in the list, in order. (See perldata#List-value-constructors.)


In reply to Re^3: Dynamically create a foreach loop within a foreach loop? by smls
in thread Dynamically create a foreach loop within a foreach loop? by jdlev

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.