Answers for ">~ cpp"

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
0

>> c++

std::cout, << is used to write to standard output
std::cin,  >> is used to read from standard input.
Posted by: Guest on December-05-2021

Browse Popular Code Answers by Language