Past year Anna University questions and answers. Programming in C. Part 1.


Programming in C – CS 3251
Anna University Exam Questions & Answers (2021 Regulation)
Q.1. (2 marks, Unit 1) April 2024
List at least any 10 keywords in C.
Answer
• int, char, float, double, void
• short, long, signed, unsigned
• if, else
• for, while, do, continue, break
• switch, case, default
• struct, enum, typedef
(Write any 10-12 keywords from the above.)
Supplementary Notes
- Keywords are reserved words. They have a special pre-defined meaning to the compiler. We cannot use them as variable names, function names, etc.
- ‘do’ is a keyword, ‘while’ is a keyword. ‘do while’ is not a keyword.
- ‘else’ is a keyword, ‘if’ is a keyword. However, ‘else if’ is not a keyword. Similarly, ‘elseif’ is not a keyword.
Leave a comment