Question
What will be the size of above array element ?
a.
22
b.
19
c.
20
d.
21
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. int a[20] What will be the size of above array element ?
Similar Questions
Discover Related MCQs
Q. What is meaning of the following statement ?
int *ptr[20]
View solution
Q. In C Programming, If we need to store word "INDIA" then syntax is as below -
View solution
Q. Below is an example of -
int RollNum[30][4];
View solution
Q. Pointer is special kind of variable which is used to stored __________ of the variable.
View solution
Q. Pointer variable is declared using preceding _________ sign.
View solution
Q. Address stored in the pointer variable is of type __________.
View solution
Q. Consider the 32 bit compiler. We need to store address of integer variable to integer pointer. What will be the size of integer pointer ?
View solution
Q. In order to fetch the address of the variable we write preceding _________ sign before variable name.
View solution
Q. A pointer is
View solution
Q. "&" is called as ___________ in pointer concept.
View solution
Q. "*" is called as ___________.
View solution
Q. What is (void*)0?
View solution
Q. In which header file is the NULL macro defined?
View solution
Q. How many bytes are occupied by near, far and huge pointers (DOS)?
View solution
Q. If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
View solution
Q. What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
View solution
Q. A pointer is
View solution
Q. The operator used to get value at address stored in a pointer variable is
View solution
Q. Which of the following statements correctly declare a function that receives a pointer to pointer to a pointer to a float and returns a pointer to a pointer to a pointer to a pointer to a float?
View solution
Q. Can you combine the following two statements into one?
char *p;
p = (char*) malloc(100);
View solution
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!