0
What can i do about a variable that being used without being initialized? Please help
cant do sh*t 😢
3 Respuestas
0
What do you mean, I don't understand the question, if you get a message saying a certain variable isn't initialized then you can initialize it right? simply assign a value for it? or am I misunderstanding your question?
0
implicit behaviour of a language will initialise the variable to zero.in languages that does not support implicit behaviour you will have to declare the variable explicitly ie initialise it with some value
0
It is a good practice to initialize variables at declaration or construction place.