adplus-dvertising

Welcome to the Pointers and Arrays in C MCQs Page

Dive deep into the fascinating world of Pointers and Arrays in C with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Pointers and Arrays in C, a crucial aspect of C Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Pointers and Arrays in C, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Pointers and Arrays in C. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Pointers and Arrays in C. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Pointers and Arrays in C MCQs | Page 27 of 53

Q261.
int a[20]
What will be the size of above array element ?
Discuss
Answer: (c).20
Discuss
Answer: (b).Array of Integer Pointers of size 20
Discuss
Answer: (a).char name[6] = {'I','N','D','I','A','\0'}
Q264.
Below is an example of -
int RollNum[30][4];
Discuss
Answer: (d).2-D Array
Q265.
Pointer is special kind of variable which is used to stored __________ of the variable.
Discuss
Answer: (d).Address
Q266.
Pointer variable is declared using preceding _________ sign.

a.

%

b.

&

c.

*

d.

^

Discuss
Answer: (c).*
Q267.
Address stored in the pointer variable is of type __________.
Discuss
Answer: (a).Integer
Q268.
Consider the 32 bit compiler. We need to store address of integer variable to integer pointer. What will be the size of integer pointer ?
Discuss
Answer: (b).2 Bytes
Q269.
In order to fetch the address of the variable we write preceding _________ sign before variable name.
Discuss
Answer: (b).Ampersand
Discuss
Answer: (b).A variable that stores address of other variable

Suggested Topics

Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!