Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 543 Bytes

void-pointers.md

File metadata and controls

19 lines (11 loc) · 543 Bytes
description
Void stars!

Void Pointers

It is very common to segfault when you are using void stars as a beginner. If this happens, this article should help you out!

{% embed url="https://www.geeksforgeeks.org/segmentation-fault-c-cpp/" %}

Introduction

A void pointer is a pointer that has no associated data type with it.

A void pointer can hold address of any type and can be typecasted to any type.

to-do

Finish research on this. Further research is needed.