Tip 1 : Revise data structure and algorithms.
Tip 2 : Revise HTML,CSS ,JS and show your projects.
Tip 3 : Be Confident.
Tip 1 : Mention your projects
Tip 2 : Put things in chronological order
Dangling Pointer is a pointer that doesn’t point to a valid memory location. Dangling pointers arise when an object is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory. Following are examples.
// EXAMPLE 1
int* ptr = (int*)malloc(sizeof(int));
..........................free(ptr);