Ask a Question related to AIX, Design and Development.

  1. #1

    Default yacc

    What package on AIX 4.3.3 contains yacc ?


    Nenad Guest

  2. Similar Questions and Discussions

    1. Recommendation: translating a Unix YACC-based program
      I'd appreciate suggestions on sensible ways to proceed: I have an old Unix program written in C, much of which was a YACC grammar. I'm going to do...
    2. searching lex & yacc for foxPro
      please ,can someone help me : i want a lex & yacc for generating parser for the programming language foxPro. thanks for all -- Posted via...
    3. YACC-LEX parsing overflow
      Alvaro Puente wrote: What does it say if you enter 'limit' at your commandline? Perhaps your stacksize limit is set too low and the bison code...
    4. lex+yacc parser for HTTP
      Hi all. I need to write a HTTP server for a school assignment, and decided to structure it in the most trivial way possible, i.e. forking on client...
  3. #2

    Default Re: yacc

    man which_fileset

    "Nenad" <nskrijelj@yahoo.com> schrieb im Newsbeitrag
    news:bj9t6j$2e$1@balder.stud.idb.hist.no...
    > What package on AIX 4.3.3 contains yacc ?
    >
    >

    Andreas Schulze Guest

  4. #3

    Default Re: yacc

    Nenad wrote:
    > What package on AIX 4.3.3 contains yacc ?
    >
    >
    yacc is in "bos.adt.utils"

    Bye, Stefan... . .

    Stefan Llabres Guest

  5. #4

    Default Re: yacc

    global{
    verb
    test
    rl0
    rand (or) rand =0 [Two cases]
    }

    thread{
    frac_value = (0.2,(0.1,0.5))
    random_thread

    }
    OUTPUT should be this:

    If i give the above input to lex and yacc, based upon the checking of [ rand (or) rand=0 ]

    if it is "rand", then it should print as " verb test rl0 rand frac_value:L=0.1 frac_value:H=0.5"
    if it is "rand=0", then it should print as " verb test rl0 rand=0 frac_value=0.2".
    For this could someone please tell me how to write a lex and yacc program.
    sunsoftmohan@gmail.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139