Open In App

Ruby | Numeric to_c() function

Last Updated : 19 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
The to_c() is an inbuilt method in Ruby returns a complex number with the num.
Syntax: num.to_c() Parameters: The function needs the number which is to be returned as complex. Return Value: It returns the complex number.
Example 1: Ruby
# Ruby program for to_c()
# method in Numeric

# Initialize a number 
num1 = 10

# Prints the to_c
puts num1.to_c()
Output:
10+0i
Example 2: Ruby
# Ruby program for to_c()
# method in Numeric

# Initialize a number 
num1 = Complex(19, -7)

# Prints the to_c
puts num1.to_c()
Output:
19-7i

Next Article

Similar Reads