pointer data type that carry address:of data type that has no name but both of them must have same data type.
structures you can make your own data type:
struct name
put any data type you wants
any functions.
Chat with our AI personalities
Pointer which stores address of structure is called pointer to structure. Explanation : 1)sptr is pointer to structure address. 2) -> and (*) both represents the same.
A structure is a collection of primitives or other structures. A pointer is a memory address. Comparison of the two is like comparing bowling balls to cinder blocks. You can say that a structure defines the layout of the data, while a pointer points to data that is a particular structure.
The arrow is used when a pointer variable is used to get at a member of a structure, and the dot operator is used when dealing with the real structure.ptr->fld == (*ptr).fldstr.fld == (&str)->fld
A pointer to a function is the memory address that stores the address of a function, while the pointer itself is a function pointer.A pointer to a function might be defined as "int (*pf)(int, int);", while to actually point to the function, you would use a function pointer, such as "pf = &func;".
There isn't any difference. Two different words forexactly same thing. Third way to call it is instruction address register.
A typedef is a compiler macro. A reference is a pointer, usually implemented with transparent syntax. They have no relationship between each other.