I\'m doing an assignment where we have to read a series of strings from a file into an array. I have to call a cipher algorithm on the array (cipher transposes 2D arrays). S
If you have char[] c then you can do char* d = &c[0] and access element c[1] by doing *(d+1), etc.
char[] c
char* d = &c[0]
*(d+1)