int x= 1000; //creates a new
memory block
int* p = x; // *p is the pointer to address block 1000(mem location)
int *p = 20;
printf("%d",*p); //This pointer prints 20
delete p;
printf("%d",*p); // This would throw an error, because now p is
// inaccessible or dangling. *p is a dangling pointer.
Code Example |
---|
C :: timespec c |
C :: passing an array to a function |
C :: function that reverses the content of an array of integers. |
C :: shortest job first |
C :: analog clock c code for turbo |
C :: reverse string in c |
C :: Example of header file c |
C :: libraries that are not supported by null sound safety in flutter |
C :: Laravel installation on Linux |
C :: l/O Multiple Values |
C :: putting character in the begginig and end of sring C |
C :: how to use arry |
C :: gotoxy not working in dev c++ |
C :: pygraphviz show |
C :: float |
C :: c variable |
C :: free array in c |
C :: jframe mittig positionieren |
Dart :: flutter sleep |
Dart :: remove appbar shadow flutter |
Dart :: flutter appbar width |
Dart :: height appbar flutter |
Dart :: flutter tooltip circle border |
Dart :: flutter close dialog |
Dart :: dart loop through array |
Dart :: how to disable screen rotation in flutter |
Dart :: custom error snackbar flutter |
Dart :: six_ft_apart |
Dart :: flutter bullet point |
Dart :: Dart set list spread operator |