R_code-3.r (273B)
1 # Assume you have a variable company <- "Programiz". 2 # Write a line of code using the paste0() function to print "Welcome toProgramiz" 3 # ensuring there is no default space between the string and the variable. 4 5 company <- "Programiz" 6 print(paste0("welcome to", company))