1.

What is the right way to access value of structure variable book{ price, page }?

A. printf("%d%d", book.price, book.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» B. printf("%d%d", price.book, page.book);


Discussion

No Comment Found