This help topic is for R version 0.60. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/c.html
c {base}R Documentation

Combine Values into a Vector or List

Description

This is a generic function which combines its arguments.

The default method combines its arguments to form a vector. All arguments are coerced to a common type which is the type of the returned value. If recursive=TRUE, the function recursively descends through lists combining all their elements into a vector.

Usage

c(..., recursive=FALSE)

See Also

unlist.

Examples

c(1,7:9)
c(1:5, 10.5, "next")
c(options(), recursive=T)

[Package base version 0.60 ]