Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
RE: Which of the following about automatic variables within a function is correct ?a.its type must be de...
answer C in the sense A is wrong? how could the statement A wrong with out declaring the variable how can we use it? C is right but A is right too... think about B also for a while...
RE: Which of the following about automatic variables w...
A may/may not be correct-It may be used within a function and defined as global outside of it..Hence its being used without being defined in the funcion.B May be global/local.Hence Not always true.D Same as aboveC- It is true.If declared static then its initialized to zero.