Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down