Which of the following is not a legal definition with initializations?
(Consider each line to be in a different scope so there is no multiple definition of identifiers).
A. int count = 0, limit = 19
B. int count(0), limit(19)
C. int count = 0, limit(19)
D. int limit = 19
E. int namespace(0)