"c language" explain pointer arithmetic with a sample c program
Answers
Answered by
2
pointers are nothing but address of a variable which is the value of other variable.is is represented as
*data type
arithmetic operations can be performed on pointers
a.any integer can be subtracted from pointer.
b.increment and decrement of a pointer can be done.
*data type
arithmetic operations can be performed on pointers
a.any integer can be subtracted from pointer.
b.increment and decrement of a pointer can be done.
Similar questions