How does current vary with potential difference applied to a wire? Show that graphically.
Answers
Answered by
0
Explanation:
You can define pointers to structures in the same way as you define pointer to any other variable −
struct Books *struct_pointer;
Now, you can store the address of a structure variable in the above defined pointer variable. To find the address of a structure variable, place the ‘&’; operator before the structure’s name as follows −
struct_pointer = &Book1;
To access the members of a structure using a pointer to that structure, you must use the → operator as follows −
struct_pointer->title;
Let us re-write the above example using structure pointer.
Similar questions
English,
25 days ago
Psychology,
25 days ago
Math,
25 days ago
English,
1 month ago
Math,
1 month ago
Geography,
9 months ago
Social Sciences,
9 months ago
Math,
9 months ago