Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
(2) My second question is about the third argument in "perl_parse".Some people put it as 2 or 3 or argc. I want to know what it actually means.
The third argument (argc) is simply the number of elements in the fourth argument (argv). This is an array of strings, which corresponds to the arguments you pass to perl on the command line.

In the examples in perlembed, some of them just pass their own command-line arguments through to the Perl interpreter, hence they pass their own argc and argv, while others use a constant array of arguments, and pass its length (which happens to be 3 in one of the examples, because the array is { "", "-e", "0" }, and 2 in another because the array is { "", "power.pl" }.)

(The first element of argv is more or less ignored, which is why these examples use the empty string. I imagine it's used to initialise $0, but I haven't confirmed that. It’s not even used to initialise $0.)

Update: changed ‘argument’ to the less ambiguous ‘element of argv’, in the last sentence.


In reply to Re: Doubts of a perl beginner on PERLEMBED by robin
in thread Doubts of a perl beginner on PERLEMBED by jithoosin

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-20 06:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found