R_code-3.r (399B)
1 # Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 2 # Repo: https://github.com/notamitgamer/bsc 3 # License: MIT 4 5 # Assume you have a variable company <- "Programiz". 6 # Write a line of code using the paste0() function to print "Welcome toProgramiz" 7 # ensuring there is no default space between the string and the variable. 8 9 company <- "Programiz" 10 print(paste0("welcome to", company))