C Programming Language Overview Of C Language
⚠ Report Question ✓ Question Verified
#include int main() { enum status {pass, fail, absent}; enum status stud1, stud2, stud3; stud1 = pass; stud2 = absent; stud3 = fail; printf("%d %d %d\n", stud1, stud2, stud3); return 0; }
Learn More MCQ Questions from C Programming Language Overview Of C Language
This page provides multiple choice questions (MCQs) on the C Programming Language, covering topics such as data types, operators, functions, pointers, and more. Test your knowledge and understanding of the C language with these challenging questions.