Same datatype means that all values in the array must be of the same type, so they must all be whole numbers for example, or decimal numbers, or characters, or strings, or some other data type. Having the array stored contiguously in memory means that the values are stored right after...
Access StringsSince strings are actually arrays in C, you can access a string by referring to its index number inside square brackets [].This example prints the first character (0) in greetings:Example char greetings[] = "Hello World!"; printf("%c", greetings[0]); Try it Yourself ...