What Is The Right Way To Access A Structure Variable?

What Is The Right Way To Access A Structure Variable? Q. What is the right way to access value of structure variable book{ price, page }? B. printf(“%d%d”, price.book, page.book); C. printf(“%d%d”, price::book, page::book); D. printf(“%d%d”, price->book, page->book); Answer» a. printf(“%d%d”, book.price, book.page); How do you access a structure variable through a pointer? Access Structure