C Programming Language Pointer in C Language
⚠ Report Question ✓ Question Verified
#include"stdio.h" main() { int a[] = {2, 9, 3.6, 8, 9.7, 5.8}; int j, *q = a; for(j=0; j<5; j++) { printf("\t%d", *q) ; q++; } }
Learn More MCQ Questions from C Programming Language Pointer in C Language
Test your understanding of pointers in C programming with these multiple choice questions. Learn about the different operations and applications of pointers in C and become a proficient C programmer. Take the quiz now!
In this section you will learn MCQ question and answers of Pointer in C Language.