Pointers and references: Difference between revisions

→‎{{header|PARI/GP}}: add note on Pari
(→‎{{header|PARI/GP}}: add note on Pari)
Line 525:
issquare(9,&n);
print(n); \\ prints 3</lang>
 
Pari program can use C pointers normally. In fact, all GEN variables are actually pointers to a space within the Pari stack (or, rarely, the Pari heap).
 
=={{header|Perl}}==