Q:

Ruby program to pass a string to the user-defined function

belongs to collection: Ruby User-defined Functions Programs

0

In this program, we will create a user-defined function with a string argument and print it.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to pass a string to the user-defined function is given below. The given program is compiled and executed successfully.

# Ruby program to pass a string to 
# the user-defined function

def passString(str)
    print "String is: ",str;
end

print "Enter string: ";
str = gets.chomp;  

passString(str);

Output:

Enter string: Hello World
String is: Hello World

Explanation:

In the above program, we created a function passString() with a string argument to print the specified string. Here, we read a string from the user and passed it to the passString() function.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby User-defined Functions Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to return a string from the user-defi... >>
<< Ruby program to return an array from the user-defi...