Q:

Ruby program to return a string from the user-defined function

belongs to collection: Ruby User-defined Functions Programs

0

In this program, we will create a user-defined function and return the string from created function.

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 return a string from the user-defined function is given below. The given program is compiled and executed successfully.

# Ruby program to return a string 
# from the user define function

def getString()
    print "Enter string: ";
    str = gets.chomp;  
    return str;
end

str=getString();
print "String is: ",str;

Output:

Enter string: Hii users
String is: Hii users

Explanation:

In the above program, we created the function getString(). In the getString() function, we read a string from the user and return the input string.

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 multiple values from the us... >>
<< Ruby program to pass a string to the user-defined ...