Code:
char a[] = "Tennisstar"; // this works
char *a = "Tennisstar"; // this also works

/*but a pointer is a variable that stores a mem. add. and an array is a
group of varibles... how how are they same?
Why doesn't it work with integers?
Why in int arrays you have to specify a number between the square brackets (size) but not in char?*/

/*and yes... all nerds out there
please explain in simple terms since i am a beginner...
THANX!!!*/