C Programming Language Variable 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 Variable in C Language
This page contains multiple choice questions (MCQs) on the topic of Variables in C Language. Test your knowledge and understanding of the concept of variables in C Language with these MCQs.