What will be the output of the following R code?
> f <- function() {
+ ## This is an empty function
+ }
> f()
> f <- function() {
+ ## This is an empty function
+ }
> f()A. 0
B. No result
C. NULL
D. 1
Answer: Option C

Join The Discussion