Discussion :: Structures, Unions, Enums
-
Which of the following statements correctly assigns 12 to month using pointer variable pdt?
#include
struct date { int day; int month; int year; }; int main() { struct date d; struct date *pdt; pdt = &d; return 0; }
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment