a <- c(1, 2, 8)
b <- c(5, 8, 9, 10)
c <- c(a,b)
c
cat("typeof a", typeof(a), " typeof b", typeof(b),
"typeof c",typeof(c) , "\n")
a <- c("geek","for","geek")
b <- c("hello","coder")
c <- c(a,b)
c
cat("typeof a", typeof(a), " typeof b", typeof(b),
"typeof c",typeof(c) , "\n")
a <- c(TRUE, FALSE, NA)
b <- c(TRUE, FALSE)
c <- c(a,b)
c
cat("typeof a", typeof(a), " typeof b", typeof(b),
"typeof c",typeof(c) , "\n")