Predict the output of below code:
#include‹stdio.h›
int main()
{
struct site
{
char name[] = "GeeksforGeeks";
int no_of_pages = 200;
};
struct site *ptr;
printf("%d",ptr->no_of_pages);
printf("%s",ptr->name);
getchar();
return 0;
}
Answer: B
No answer description available for this question.
Enter details here
If arr is a two dimensional array of 10 rows and 12 columns, then arr (5) logically points to the
Answer: A
No answer description available for this question.
Enter details here
Minimun number of comparison required to compute the largest and second largest element in array is
Answer: B
No answer description available for this question.
Enter details here
Array is an example of _______ type memory allocation
Answer: A
Array allocate memory at compile time
Enter details here
What are the Types of Arrays?
Answer: D
No answer description available for this question.
Enter details here
What is Array?
Answer: B
No answer description available for this question.
Enter details here
The information about an array used in a program will be sorted in
Answer: D
No answer description available for this question.
Enter details here
The const feature can be applied to
Answer: D
No answer description available for this question.
Enter details here
If a two dimensional array is used as a formal parameter, then
Answer: B
No answer description available for this question.
Enter details here
Pick the correct answers
if x is an one dimensional array, then
Answer: D
No answer description available for this question.
Enter details here