I am trying to manipulate the elements in a 2D array
#include <stdio.h>
main()
{
char arr[][30] = {"hello", "goodbye"};
printf("%s\t%s\n",arr[0], arr[1]);
arr[0] = arr[1];
printf("%s\t%s\n",arr[0], arr[1]);
}
incompatible types when assigning to type ‘char[30]’ from type ‘char *’
I am new to C and coming from an OO background, so my knowledge of pointers is still very fundamental.
I understand this can be done using an array of pointers, but would like to know how to perform this operation with 2D arrays
Thank you for any clarification