I would like to change all array access to pointer access (I am aware it is
not exactly the same), example


a.c

int a[50][7]

main() {
  a[i][j] = 11;
}

will change to

int a[50][7]; // this I can not change

main() {
  int *tmp;

  tmp = a;

  (*tmp + 50*i +j) = 11;
}



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
CIL-users mailing list
CIL-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cil-users

Reply via email to