Question
#include <stdio.h>
struct p
{
int x;
char y;
};
int main(){
struct p p1[] = {1, 92, 3, 94, 5, 96};
struct p *ptr1 = p1;
int x = (sizeof(p1) / sizeof(struct p));
printf("%d %d\n", ptr1->x, (ptr1 + x - 1)->x);
}
a.
Compile time error
b.
Undefined behaviour
c.
1 3
d.
1 5
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?
Similar Questions
Discover Related MCQs
Q. Presence of loop in a linked list can be tested by the compiler by
View solution
Q. Which of the following is not possible?
View solution
Q. Which of the following techinique is faster for travelling in binary trees?
View solution
Q. Which function is responsible searching in the table?
(For #define IN 1, the name IN and replacement text 1 are stored in a “table”)
View solution
Q. Which algorithm is used for searching in the table?
View solution
Q. Which function is responsible for recording the name “s” and the replacement text “t” in a table?
View solution
Q. Which of the following is true?
View solution
Q. What happens when install(s, t) finds that the name being installed is already present in table?
View solution
Q. In what situation, install function returns NULL?
View solution
Q. For the following expression to work, which option should be selected.
string p = “HELLO”;
View solution
Q. Which of the given option is the correct method for initialization?
typedef char *string;
View solution
Q. Which of the following is FALSE about typedef?
View solution
Q. typedef int (*PFI)(char *, char *) creates
View solution
Q. typedef declaration
View solution
Q. Size of a union is determined by size of the
View solution
Q. Members of a union are accessed as________________
View solution
Q. Which of the following share a similarity in syntax?
1. Union, 2. Structure, 3. Arrays and 4. Pointers
View solution
Q. Which of the following data types are accepted while declaring bit-fields?
View solution
Q. Which of the following reduces the size of a structure?
View solution
Q. Which of the following is not allowed?
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!