Linux Tutorials on the topic “programming”
-
Linux C Programming Tutorial Part 10 - Variable Scopes
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 0If you are following our C programming tutorial series, you should be aware of the concept of variables. While we've discussed the basics of variables, there's another important aspect related to variables that we'll be discussing here: scope of variables.
-
Linux C Programming Tutorial Part 9 : Strings
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 1In this ongoing C programming tutorial series, we have already touched upon the concept of character arrays. Closely related to character arrays is the concept of strings, which we'll be discussing here.
-
Linux C Programming Tutorial Part 8 - Call by Value Vs Call by Pointer/Address
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 0In C language, you can call a function in a couple of ways: call by value and call by pointer or address. Let's discuss both these concepts with some easy to understand examples.
-
-
Linux C Programming Tutorial Part 7: Arrays
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0A variable is something which can hold a value of a particular type - it could be an integer, character, or even floating point. However, there's one limitation of variables: they can only hold a single value at any given time. This tutorial shows the basics of using Arrays, which can hold multiple values.
-
C Command Line Tutorial 6 - Code indentation, increment/decrement operators, do-while and for loops, and more
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 2We have covered a total of 5 C programming tutorials so far. Each tutorial focused on something specific. In process of remaining close to the topic, some generic concepts remained untouched. Some of those concepts we'll be discussing here in this tutorial.
-
C Programming Tutorial Part 5 - Character variables
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 0In the previous two tutorials, we discussed the basics of variables including how they occupy memory. But we mainly focused on integers and floats. In this tutorial, we will discuss about characters (or char type variables).
-
C Programming Tutorial 4 - Variables and Memory
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 1In this tutorial series so far, we have discussed how to create and run a basic C program, what are preprocessors, as well as basics of variables. Now let's dig a bit deep into variables and discuss the memory aspect.
-
C Programming Tutorial Part 3 - Variables basics
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 2In this tutorial, we will show you the basics of using variables in C programming.
-
C Programming Tutorial Part 2 - Preprocessors
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0In the first part of our ongoing C programming tutorial series, we briefly touched on the preprocessing stage. In this tutorial, we will discuss it in a little more detail so that you have a basic idea about it before learning other C programming aspects.
-
C Programming Language - Introduction
Author: Himanshu Arora • Tags: c-programming, linux, programming • Comments: 1This tutorial is the first part of a C programming language course on Linux. C is a procedural programming language that was designed by American computer scientist Dennis Ritchie. Please note that we'll be using Linux for all our examples and explanation. Specifically, we'll be using Ubuntu 18.04 LTS.