Aman Sharma has Published 50 Articles

How to create a Function with Arguments but without a return value in Golang?

Aman Sharma

Aman Sharma

Updated on 17-Jan-2023 10:44:33

This tutorial will teach us how to create a function with arguments but without a return value. This tutorial involves a gist about the function, and syntax for the function with argument and without return type in Golang, then last we will see two different examples of a function with ... Read More

How to check whether a number is Positive or Negative in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:29:03

In this tutorial, we will learn how to check whether the number is positive or negative. This tutorial includes two ways to achieve this by using the built-in function Signbit() present in the math library. Another way is to use the relation operators using which we can compare a number ... Read More

How to create a Function with Arguments and a return value in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:26:30

This tutorial will teach us how to create a function with arguments and a return value. This tutorial involves a gist about the function, and syntax for the function with an argument and a return type in Golang, then last we will see two different examples of a function with ... Read More

How to create a Function without Argument but return a value in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:21:41

This tutorial will teach us how to create a function without arguments and with a return value. This tutorial involves a gist about the function, and syntax for the function without an argument and with a return type in Golang, then last we will see two different examples of a ... Read More

How to create a simple Recursive Function in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:19:13

In this tutorial, we are going to see how we can write a simple recursive function Golang with the help of an algorithm and, examples. In the first example, we will print the number from 1 to N in ascending order similarly in the other example we are going to ... Read More

How to find the GCD of Two given numbers using Recursion in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:16:17

In this tutorial, we will see how to find the Greatest common divisor of two numbers using the Golang language using recursion. We will see two ways to find the GCD of two numbers recursively. First will take more time where we are reducing the minimum of both numbers by ... Read More

How to return multiple values from the function in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:13:58

In this tutorial, we are going to see how we can return multiple values from the function in Golang with the help of an algorithm and examples. Like other programming languages like python, Golang also supports returning multiple values from a function. In the first, example we are going to ... Read More

How to find the Reverse of a given number using Recursion in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:10:40

In this tutorial, we are going to learn how we can find the reverse of the given number in the Golang programming language. The recursive function is more suitable if we want to modify the function that is not possible with a For loop. In this article, we are going ... Read More

How to find the LCM of two given numbers using Recursion in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 17:02:33

In this tutorial, we are going to find the Least common multiple of two numbers in Golang using recursion. To find the LCM recursively we are going to use the relation of LCM with the Greatest common divisible i.e GCD of both the numbers. LCM stands for least common multiple ... Read More

How to check whether a character is in the Alphabet or not in Golang?

Aman Sharma

Aman Sharma

Updated on 11-Jan-2023 16:54:04

In this tutorial, we will learn how to check whether the character is an alphabet or not. This tutorial includes two ways to achieve this − First, using the built-in function isLetter() present in the fmt library will reduce the line of codes. Another way is to use the concept ... Read More

Advertisements