arunkumaraqm / Data-Structures

Programs covered in DSA Lab during Semester 3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data-Structures

Note: You will see this multiple times - type* ptr = malloc(sizeof ptr) and it's worked till now because the size of the address has always been greater than the size of an instance of that type. It should be corrected as so - type* ptr = malloc(sizeof *ptr)

About

Programs covered in DSA Lab during Semester 3


Languages

Language:C 100.0%