Golang program to convert a specified numeric string into integer using strconv.Atoi() function
belongs to collection: Golang strconv Package Programs
All Answers
total answers (1)
belongs to collection: Golang strconv Package Programs
total answers (1)
Program/Source Code:
The source code to convert a specified numeric string into an integer using strconv.Atoi() function is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the "fmt", "strconv" packages then we can use a function related to imported packages.
In the main() function, we created a str variable initialized with "-203". Then we converted the numeric string into an integer number strconv.Atoi() function. After that, we printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer