Combine Arguments into a Vector in R Programming – c() FunctionReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article Likec() function in R Language is used to combine the arguments passed to it.Syntax: c(…)Parameters:…: arguments to be combinedExample 1:# R program to cumulative maxima # Calling c() functionx <- c(1, 2, 3, 4)xOutput: [1] 1 2 3 4 Example 2:# R program to cumulative maxima # Calling c() functionx <- c("a", "b", "c", "d")xOutput: [1] "a" "b" "c" "d" Last Updated : 15 Jun, 2020Like Article Save Article Please Login to comment...