What always contains a pointer variable?

1 answer

Answer

1111898

2026-04-25 02:51

+ Follow

pointer variable in c contains the address or the location of the other variable.

eg- if a=2 and address of a is 2345. b=&a then b is a pointer which contains 2345 which is the address of a. *b gives value of that is 2.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.