Write an R program to create three vectors a,b,c with 3 integers. Combine the three vectors to become a 3×3 matrix where each column represents a vector. Print the content of the matrix.
a
<- c(1, 2, 3)
b
<- c(4, 5, 6)
c
<- c(7, 8, 9)
matrix_result
<- matrix(data = c(a, b, c), nrow = 3, byrow = FALSE)
print(matrix_result)