how can a pointer be incremented????
the correct ans is........... U GET AN ERROR.. BCOZ... CONST VALUE CANNOT BE CHANGED...
Answer:Compiler error: Cannot modify a constant value.Explanation:p is a pointer to a "constant integer". But we tried to change thevalue of the "constant integer".
how can a pointer be incremented????
ReplyDeletethe correct ans is...........
ReplyDeleteU GET AN ERROR.. BCOZ... CONST VALUE CANNOT BE CHANGED...
Answer:
ReplyDeleteCompiler error: Cannot modify a constant value.
Explanation:
p is a pointer to a "constant integer". But we tried to change the
value of the "constant integer".