From b19125e15c3397e7e42b07cf6d5ce22a4c1e5589 Mon Sep 17 00:00:00 2001 From: Ayush Gupta <67856004+Ayushgup85@users.noreply.github.com> Date: Fri, 2 Oct 2020 00:11:17 +0530 Subject: [PATCH] Update readme.md --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index bd5c6a1..ff7218d 100644 --- a/readme.md +++ b/readme.md @@ -985,7 +985,8 @@ If it's valid to assign a value of one type to a variable of another type, then // This compiles fine: struct Apple * apples = malloc( sizeof *apples ); ``` - +#### void Pointer +The void pointer in C is a pointer which is not associated with any data types. It points to some data location in the storage means points to the address of variables. It is also called general purpose pointer. In C, malloc() and calloc() functions return void * or generic pointers. #### Give structs TitleCase names, and typedef them