Answers for "c++ %"

C++
1

c++ ->

struct car {
	int year
  	int vin; 
}

struct car myCar;
p_myCar = &myCar;

myCar.year = 1995;
// '->' allows you to use the '.' with pointers
p_myCar->vin = 1234567;
Posted by: Guest on June-24-2021

Browse Popular Code Answers by Language