What arithmetic operation (which is absent in Turbo Pascal language) should have the right-hand binding property?

  • not a question for yourself =) but for mere mortals, can we reformulate it? - Gorets
  • xs, I'm just learning) - Rezox
  • 2
    say what you want to do and we will say how to do it. - teanYCH
  • no, these are test questions on the tutorial, I want to fully absorb the material - Rezox
  • it looks like something related to parsing, but it is somehow incomprehensible to formulate, if you know "such an operation that is not in Pascal", say what it is and where it is, then let's say an analogue or what can be replaced - Gorets

1 answer 1

Exponentiation.

  • Thank you, but can you clarify the essence of the answer at all? - Rezox
  • There is no such function in pascal. You can write your own. let's loop multiply a number several times. - Artem
  • Thank. I understood this, but I am interested in the process of right-sided binding. I can not imagine how this process occurs. - Rezox 2:19 pm
  • what is the right side binding? - Artem
  • 2
    Probably it means that exponentiation is a right associative operation, i.e. a ^ b ^ c ^ d ^ e = a ^ (b ^ (c ^ (d ^ e))) - insolor