In Go language,
fmt package implements formatted I/O with functions analogous to C's printf() and scanf() function. The
fmt.Fscan() function in Go language scans the specified text, read from r, and then stores the successive space-separated values into successive arguments. Here newlines get counted as space. Moreover, this function is defined under the fmt package. Here, you need to import the "fmt" package in order to use these functions.
Syntax:
func Fscan(r io.Reader, a ...interface{}) (n int, err error)
Parameters: This function accepts two parameters which are illustrated below:
- r io.Reader: This parameter contains the scanned specified texts.
- a ...interface{}: This parameter receives each type of the specified texts.
Returns: It returns the number of items successfully scanned.
Example 1:
Output:
10 false GFG
3
Example 2:
Output:
46 true 3.4 GeeksforGeeks
4