difference between pointer and reference in c?

前端 未结 9 1516
傲寒
傲寒 2020-12-25 08:11

what is the difference between pointer , reference and dereference in c?

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-25 09:06

    There's no explicit reference type in C like in C++. Anywhere anybody says "reference" in context of C language you can assume a pointer.

提交回复
热议问题