C Programming

Arrow operator in C - All you need to know! — step-by-step Programming tutorial on Progressive Robot

Arrow operator in C – All you need to know!

Hey, folks! In this article, we will be focusing on Arrow operator in C. C language comprises of various operators to deal and manipulate the data records. One such operator is the Arrow operator. So, let us begin! Working of Arrow operator in C? In C, this operator enables the programmer to access the data […]

Read more
Using the puts() function in C/C++ — step-by-step Programming tutorial on Progressive Robot

Using the puts() function in C/C++

URL: https://www.progressiverobot.com/puts-function-c-plus-plus/ Introduction Hello reader! Today in this tutorial we are going to discuss about the vastly used puts() function in for both C and C++ programming languages. Even though the printf() and cout functions in both C and C++ are prominent for printing variables, numbers, lines, etc. they ultimately lack behind while printing strings […]

Read more
How to Find Length of a Linked List? — step-by-step Programming tutorial on Progressive Robot

How to Find Length of a Linked List?

What is a Linked List? A linked list is a linear data structure used for storing collections of data Successive elements are connected by pointers The last element points to NULL Each element is a separate object and is called a Node Each node in a linked list comprises of two parts Data Reference to […]

Read more
Install C/GCC Compiler for Windows — step-by-step DevOps tutorial on Progressive Robot

Install C/GCC Compiler for Windows

The first step in learning any programming language is to have the required software installed in the system. In this tutorial, we will learn how to install C/GCC compiler in Windows. Source Code Editors Although, you may choose any basic text editor such as notepad for writing and editing source code of C, we recommend […]

Read more
Data Types and Modifiers in C — step-by-step DevOps tutorial on Progressive Robot

Data Types and Modifiers in C

Data Types in C C has various data types to store data in program. C program can store _integer, decimal number, character(alphabets), string(words or sentence), list_ etc. using various data types. We need to specify the data type of variable(identifier) to store any data in it. Explanation and basic usage of the concept is provided […]

Read more
CHAT