Date: | Mon Apr 21 17:23:09 2003 | |
Subject: | Vector arguments to external procedures - correction | |
From: | davidy | |
Volume-ID: | 1030421.05 |
Sorry - in my earlier message, instead of > int x[100]; > foo(*(x+30), 10); I meant of course foo(x+30, 10); since I want to pass the address, not the value. The Fortran, by the way, is correct, since Fortran always passes addresses. David |