Skip to content
Programming Geeks Club
Programming Geeks Club
  • Home
  • Free Books
  • DSA
    • Algorithms
      • Sorting Algorithms
    • Data Structures
      • All Data Structures
  • Problem Solving
    • Arrays
    • Strings
  • Languages
    • Carbon
    • Golang
    • JavaScript
    • Node JS
    • Python
  • Security
  • Web Stories
  • News
  • Personal Finance
Programming Geeks Club
Programming Geeks Club
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Thank you for your donation
how-to-call-c-code-from-golang

How to Call C Code from Go

Leave a Comment / Golang / Programming Geeks Club

Introduction In this article we are going to learn about how we can call C language code from Golang. Although Go intends to make your programming experience better and save you from the quirks of C language, C language remains a very capable programming language that is still useful. This means that there are situations, […]

How to Call C Code from Go Read More »

maps-slices-and-the-go-garbage-collector-explained

Maps, Slices, and the Go Garbage Collector

Leave a Comment / Golang / Programming Geeks Club

In this article, I am going to present you with some examples showing why you should be cautions regarding the operation of the garbage collector. The point of the article is to understand that the way you store pointers has a great impact on the performance of the garbage collector, especially when you are dealing

Maps, Slices, and the Go Garbage Collector Read More »

error-handling-in-golang

Error Handling in Go

Leave a Comment / Golang / Programming Geeks Club

Introduction Errors and error handling are two very important Go topics. Go likes error messages so much that it has a separate data type errors, names error. This also means that you can easily create your own error messages if you find that what Go gives you is not adequate. You will most likely need

Error Handling in Go Read More »

the-advantages-of-go

The Advantages Of Using Go

Leave a Comment / Golang / Programming Geeks Club

In this article we are going to learn about , What are the advantages of using go and why it’s so popular now between developers, but first lemme tell you what go is and why it was created. History of Go Go is a modern, generic purpose, open source programming language that was officially announced

The Advantages Of Using Go Read More »

important-rules-of-golang

Important Rules of Golang

3 Comments / Golang / Programming Geeks Club

Golang has strict coding rules that are there to help developers avoid silly errors and bugs in your golang code, as well as to make your code easier for other to read(for the Golang community). This article will cover two such Important Rules of Golang you need to know of it. Use of Golang package

Important Rules of Golang Read More »

sort-an-array-in-wave-form-using-golang

Sort Array In Wave Form In Golang

Leave a Comment / Arrays, Golang, Problem Solving / Programming Geeks Club

Before going for what is the problem let’s first understand few terms we are about to do in this post. What does it mean by “wave array” Well, you have seen waves right? how do they look? if you will form a graph of them it would be some in some up-down fashion. that is

Sort Array In Wave Form In Golang Read More »

Alternative Sorting In Golang

Leave a Comment / Arrays, Golang, Problem Solving / Programming Geeks Club

In this post article we are going to solve a problem using go programming language, before i tell you about the problem , in this problem we are going to use go sort package to first sort the array then we are going to solve the main problem, so without further ado let’s start. Problem

Alternative Sorting In Golang Read More »

bubble-sort-algorithm

Bubble Sort Algorithm

Leave a Comment / Algorithms, Sorting Algorithms / Programming Geeks Club

Definition Bubble Sort Algorithm is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity is quite high. Flowchart of bubble sort algorithm How bubble sort algorithm works? Follow the below steps to

Bubble Sort Algorithm Read More »

Selection Sort Flowchart

Selection sort algorithm

Leave a Comment / Algorithms, Sorting Algorithms / Programming Geeks Club

Definition Selection sort algorithm is a simple sorting algorithm. Selection sort algorithm is an in-place comparison-based algorithm in which the list is divided into two parts, the sorted part at the left end and the unsorted part at the right end. Initially, the sorted part is empty and the unsorted part is the entire list.

Selection sort algorithm Read More »

Sort an array in a single loop using golang

Leave a Comment / Arrays, Golang / Programming Geeks Club

Sort is an common thing between programmers and mostly used as well, So today we are going to cover this how we can sort an array in just a single loop using left and right pointer and after getting each value we starts resets the loop to start again from the beginning to look for

Sort an array in a single loop using golang Read More »

Post pagination
← Previous 1 … 7 8 9 Next →

Copyright © 2025 Programming Geeks Club | Powered by Astra WordPress Theme