TipsMake
Newest

Programming C

Enumeration (enum) in C
17 October 2023

Enumeration (enum) in C

What is enumeration (enum) in C? How to use Enum in C? Let's find out with TipsMake.com.com!

Switch in C
17 October 2023

Switch in C

Instead of writing multiple if..else statements, you can use the switch statement in C. The Switch statement in C selects one of many blocks of code to be executed.

Boolean in C
17 October 2023

Boolean in C

Boolean, also known as bool in C, is an element that you must know when using this programming language. Here's everything you need to know about Boolean in C.

If ... Else in C
17 October 2023

If ... Else in C

What is the If … Else condition in C? What is the meaning and usage of If Else statement in C? Let's find out with TipsMake.com.com!

How to Compile C Programs with GNU (GCC)
25 February 2022

How to Compile C Programs with GNU (GCC)

TipsMake today will teach you how to compile a C program from source code using GNU (full name is GNU Compiler Collection, abbreviated GCC) - compiler for Linux and Minimalist Gnu

How to Create a 20 Questions Game in C++
05 March 2020

How to Create a 20 Questions Game in C++

This tutorial will walk you through creating 20 Questions in C++ with numbers using Visual Studio. This tutorial is very 'bare bones' and only uses the basics of C++ programming.

How to Create a Recursive Function in C++
05 March 2020

How to Create a Recursive Function in C++

Recursion is a major topic in computer science. It is a method where a problem is reduced or simplified to smaller versions of itself until a solution is achieved. This tutorial

How to Quick Sort an Array in C++
05 March 2020

How to Quick Sort an Array in C++

Sorting is a very useful tool in programming. It is often necessary to arrange the members of a list in ascending or descending order. A sorted list allows a user to search and

How to Program in C++ and Batch
05 March 2020

How to Program in C++ and Batch

C++ is a mid-level programming language—it easy to write and it runs very quickly. As a result, it is widely used to develop games, business apps, and software, such as Google

How to Create an Alert in C
05 March 2020

How to Create an Alert in C

Sometimes, when writing a program, you need to create a way to get the attention of the user to bring their focus back to the program. Alerts are a very useful way to do that. If

How to Calculate Your Wage in C++
05 March 2020

How to Calculate Your Wage in C++

You may find it useful or interesting to know how much you will earn in a month or year. While it is possible to do this calculation manually or with a calculator, writing a

How to Create Pointers in C
05 March 2020

How to Create Pointers in C

Pointers are the nightmare of every new C programmer. However, they are also the feature that made C the widespread, powerful programming language it is until today. Like many