I\'m learning C right now and got a bit confused with character arrays - strings.
char name[15]=\"Fortran\";
No problem with this - its an
char* name is just a pointer. Somewhere along the line memory has to be allocated and the address of that memory stored in name.