R_code-3.r ​
Metadata ​
- Author — Amit Dutta (amitdutta4255@gmail.com)
- Last updated — 19 Mar 2026
- License — MIT
Problem Statement ​
Problem Statement
Assume you have a variable company <- "Programiz". Write a line of code using the paste0() function to print "Welcome toProgramiz" ensuring there is no default space between the string and the variable.
Source Code ​
Printing the code
To print this file, open it on GitHub and click Raw before printing, or use the Download Raw button above and print directly from that page.
r
# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026
# Repo: https://github.com/notamitgamer/bsc
# License: MIT
# Assume you have a variable company <- "Programiz".
# Write a line of code using the paste0() function to print "Welcome toProgramiz"
# ensuring there is no default space between the string and the variable.
company <- "Programiz"
print(paste0("welcome to", company))1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10