04.02.2017, 14:58
Yes you are right my bad!
Yes. Very often we don't really do array[exact-size] = "some string" but instead we do like Jeroen52 posted above with empty brackets [], that will leave up to the compiler (I'm not sure if compiler?) to set a size on it so you do not have to worry about it. Usually you don't need to set an exact size on a char array because you "guess" its length the same way you do in your MySQL tables, you set for instance a varchar(128) because you don't know if the input will be 50 long or 100 long, etc.
Edit: Jeroen52 that wasn't a question, regarding the UPDATE I made, but thank you anyways lmao. The size of an UPDATE query depends on how long your column and table name is as well for instance.
Yes. Very often we don't really do array[exact-size] = "some string" but instead we do like Jeroen52 posted above with empty brackets [], that will leave up to the compiler (I'm not sure if compiler?) to set a size on it so you do not have to worry about it. Usually you don't need to set an exact size on a char array because you "guess" its length the same way you do in your MySQL tables, you set for instance a varchar(128) because you don't know if the input will be 50 long or 100 long, etc.
Edit: Jeroen52 that wasn't a question, regarding the UPDATE I made, but thank you anyways lmao. The size of an UPDATE query depends on how long your column and table name is as well for instance.