Extbasics Tutorial Extbasic 1 So we have this: void blah(char *str) { char lol[200]; strcpy(lol, str); } The method declares an array called lol of type char and then copies what you input into it. Arrays are useful for storing large amounts of similar data. For example, if you had a databa...