Skip to main content
deleted 1 character in body
Source Link
Robert Harvey
  • 200.7k
  • 55
  • 470
  • 683

In my oppinionopinion, it doesn't make any sense to use C and want to avoid pointers. If you do so, then you'd better use another language.

Pointers are unavoidable in C. This is what make C so powerfull and also what make C a pain in the ass sometime. C is meant to be used with pointers.

Arrays are pointers, functions are pointers, memory allocation work through pointers, and so on. Take advantage of that or change language.

In my oppinion, it doesn't make any sense to use C and want to avoid pointers. If you do so, then you'd better use another language.

Pointers are unavoidable in C. This is what make C so powerfull and also what make C a pain in the ass sometime. C is meant to be used with pointers.

Arrays are pointers, functions are pointers, memory allocation work through pointers, and so on. Take advantage of that or change language.

In my opinion, it doesn't make any sense to use C and want to avoid pointers. If you do so, then you'd better use another language.

Pointers are unavoidable in C. This is what make C so powerfull and also what make C a pain in the ass sometime. C is meant to be used with pointers.

Arrays are pointers, functions are pointers, memory allocation work through pointers, and so on. Take advantage of that or change language.

Source Link
deadalnix
  • 6k
  • 2
  • 33
  • 27

In my oppinion, it doesn't make any sense to use C and want to avoid pointers. If you do so, then you'd better use another language.

Pointers are unavoidable in C. This is what make C so powerfull and also what make C a pain in the ass sometime. C is meant to be used with pointers.

Arrays are pointers, functions are pointers, memory allocation work through pointers, and so on. Take advantage of that or change language.