Question
(Assuming struct temp{int b;}*my_struct;)
a.
*my_struct.b = 10;
b.
(*my_struct).b = 10;
c.
my_struct->b = 10;
d.
Both *my_struct.b = 10; and (*my_struct).b = 10;
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. Which of the following are incorrect syntax for pointer to structure?
Similar Questions
Discover Related MCQs
Q. For the following function call which option is not possible?
func(&s.a;); //where s is a variable of type struct and a is the member of the struct.
View solution
Q. What is a structure in C language?
View solution
Q. What is the size of a C structure?
View solution
Q. Choose a correct statement about C structures.
View solution
Q. Choose a correct statement about C structure elements.
View solution
Q. A C Structure or User defined data type is also called
View solution
Q. What are the uses of C Structures?
View solution
Q. In a nested structure definition, with country.state.district statement, memeber state is actually present in the structure? (COUNTY, STATE, DISTRICT structures)
View solution
Q. What is actually passed if you pass a structure variable to a function?
View solution
Q. Choose a correct statement about structure and array.
View solution
Q. What are the types of data allowed inside a structure?
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!
Microprocessor
Understand the heart of your computer with our Microprocessor MCQs. Topics include...
Operating System
Dive deep into the core of computers with our Operating System MCQs. Learn about...