Pointers Expression In C Language
Pointers Expression:- Like any other variables, pointer variable can be used in expressions. In a program all the following operations are valid. 1. C allows us to add or subtract integers from pointers. sum=sum +*p1; 2. Also short hand operators are allowed sum+=*p1; ans = *p1++; This will cause the pointer p1 to point to…
Pointers Expression In C Language was originally published on HitBrother

















