DEV Community

Discussion on: Why use pointers at all.

Collapse
 
hi_artem profile image
Artem

For low level programming (drivers development), you might want to have a value stored at specific address. Although you will probably use a combination of pointers, and special linker/compiler instructions.
In general though, it is hard to write c code without pointers. Just passing stuff around would be tough.