What is Keywords? A. Keywords have some predefine meanings and these meanings can be changed. B. Keywords have some unknown meanings and these meanings cannot be changed. C. Keywords have some predefine meanings and these meanings cannot be changed. D. None of the above Correct! Wrong! Which is the right way to declare constant in C? A. int constant var =10; B. int const var = 10; C. const int var = 10; D. B & C Both Correct! Wrong!