fork download
  1. #include<stdio.h>
  2.  
  3. int main(){
  4. int *pointer;
  5. int num = 45;
  6. *pointer = num;
  7. printf("pointer points to value : %d", *pointer);
  8. return 0;
  9. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
pointer points to value :  45