C Programming Language Overview Of C Language
⚠ Report Question ✓ Question Verified
#include int main() { struct emp { char *n; int age; }; struct emp e1 = {"Dravid", 23}; struct emp e2 = e1; strupr(e2.n); printf("%s\n", e1.n); 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.