The source code to return a structure from the function is given below. The given program is compiled and executed successfully.
// Rust program to return a structure
// from the function
struct Employee {
id:i32,
name:String,
class:String
}
fn getEmp()->Employee{
let emp = Employee {id:101,name:String::from("Rohit"),class:String::from("MCA")};
return emp;
}
fn main() {
let emp=getEmp();
println!("Id:{}, Name:{}, Class:{}",emp.id,emp.name,emp.class);
}
Output:
Id:101, Name:Rohit, Class:MCA
Explanation:
In the above program, we created two functions getEmp() and main(). The getEmp() function is a user-defined function that returns the object of structure Employee to the calling function.
In the main() function, we called the getEmp() function and get the object of Employee structure, and printed the employee information.
Program/Source Code:
The source code to return a structure from the function is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created two functions getEmp() and main(). The getEmp() function is a user-defined function that returns the object of structure Employee to the calling function.
In the main() function, we called the getEmp() function and get the object of Employee structure, and printed the employee information.
need an explanation for this answer? contact us directly to get an explanation for this answer