In Go language,
fmt package implements formatted I/O with functions analogous to C's printf() and scanf() function. The
fmt.Sprint() function in Go language formats using the default formats for its operands and returns the resulting string. Here spaces are added between operands when any string is not used as a constant variable. 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 Sprint(a ...interface{}) string
Here, "a ...interface{}" contains some strings including specified constant variables.
Returns: It returns the resulting string.
Example 1:
Output:
GeeksforGeeks is a CS Portal.
Example 2:
Output:
5 10 15
In the above code, it can be seen that the function Sprint() is not using any space still space can be seen in the output between the numbers because the function itself added the spaces because not a single string is used as the constant variable.
Example 3:
Output:
abc
In the above code, it can be seen that the function Sprint() is not using any space and also spaces can not be seen in the output in between two alphabets this is because strings are used in the constant variables.