fn testing(myptr :&mut Box) { println!("Fn is called: {}",myptr); *myptr=Box::new(300); println!("Inside: {}",myptr);