Question
#include <stdio.h>
void main()
{
struct student
{
int no;
char name[20];
};
struct student s;
s.no = 8;
printf("%d", s.no);
}
a.
Nothing
b.
Compile time error
c.
Junk
d.
8
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. What is the output of this C code? #include <stdio.h> void main() { struct student { int no; char name[20];...
Similar Questions
Discover Related MCQs
Q. Is the below declaration legal?
int* ((*x)())[2];
View solution
Q. Let x be an array. Which of the following operations are illegal?
View solution
Q. What is the maximum number of dimensions an array in C may have?
View solution
Q. What does the following declaration mean?
int (*ptr)[10];
View solution
Q. Which of the following statements are correct about an array?
1. The array int num[26]; can store 26 elements.
2. The expression num[1] designates the very first element in the array.
3. It is necessary to initialize the array at the time of declaration.
4. The declaration num[SIZE] is allowed if SIZE is a macro.
View solution
Q. int a[5] = {1,2,3}
What is the value of a[4]?
View solution
Q. The function sprintf() works like printf(), but operates on ..........
View solution
Q. Choose the best answer.
Prior to using a pointer variable
View solution
Q. The address operator &, cannot act on
View solution
Q. The statement int **a;
View solution
Q. The operator > and < are meaningful when used with pointers, if
View solution
Q. The declaration
int (*p) [5];
means
View solution
Q. Comment on the following?
const int *ptr;
View solution
Q. A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as
View solution
Q. Which of the following is the correct way of declaring a float pointer:
View solution
Q. What is the base data type of a pointer variable by which the memory would be allocated to it?
View solution
Q. Set of consecutive memory locations is called as ________.
View solution
Q. Array can be considered as set of elements stored in consecutive memory locations but having __________.
View solution
Q. In Array, There is one to one correspondence between set of ________ and set of values.
View solution
Q. Smallest element of an array is called as _______.
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!