TipsMake
Newest

Tags : pointer

How to Create Pointers in C
Programming C 05 March 2020

How to Create Pointers in C

pointers are the nightmare of every new c programmer. however, they are also the feature that made c the widespread, powerful programming language it is until today. like many

Read More
How to Check Null in C
Programming C 05 March 2020

How to Check Null in C

in c, null is a symbolic constant that always points to a nonexistent point in the memory. although many programmers treat it as equal to 0, this is a simplification that can trip

Read More