Categories
UMN

Structure in c programming

In this tutorial, we are going to discuss what are structure in c programming, how to create structure variables, and how to accessing structure members. So, let’s start with this wonderful concept. Introduction to Structure in C Programming C also provides user-defined data types, like predefined data types (int, char, float, etc.). One such user-defined […]

Categories
UMN

Pointers in C Programming

In this tutorial, we will study what are pointers in c programming, the advantage of using a pointer, the disadvantage of using pointers, operators using pointers, and a suitable example of pointers. So let’s go… What are Pointers in C Programming The pointers are variables that store the address of another variable. And every variable […]

Categories
UMN

Arrays in C Programming

Hey there! In this tutorial, we will study what are arrays in c programming and the types of arrays – Single Dimensional Array, Two-Dimensional Array, and Multi-Dimensional Array with the help of a suitable example. Arrays in C Programming An array is a primitive and linear data structure that is a group of identical data […]

Categories
UMN

Recursion in C Programming

In this tutorial, we will study what is recursion in c programming, the structure of the recursion function, the advantages and disadvantages of recursion in c, the types of recursion, and the factorial of a number using recursion. Recursion in C Programming Recursion is a process in which the function calls itself. Recursion is used […]

Categories
UMN

What is Function in C

In this tutorial, we will study what is function in c programming languages and the types of function (pre-defined functions and user-defined functions), and the syntax of the function. So let’s start. What is Function in C? In order to solve a problem of C language, it should solve all those parts of the weights […]

Categories
UMN

What is Java Runtime Environment

In this tutorial, we will learn about one of the core components of Java i.e the what is Java Runtime Environment. We will cover its basic structure and understand why it is needed in Java. This tutorial will also cover the installation of JRE into your local computer. What is the Java Runtime Environment (JRE)? […]

Categories
UMN

What is Java and its Brief History

In this tutorial section, we will be diving deep into learning and understanding one of the most popular programming languages in the world i.e what is Java and its basics to advance. This tutorial section is recommended for those who are new in the field of programming as well as those who are willing to […]

Categories
UMN

What is VPN – Types and Working of VPN

In this tutorial, We will study what is VPN, Advantage, types of VPN – Remote Access, Site to site or Extra-Net and How VPN Working, etc. What is VPN? VPN stands for the virtual private network. This is a technology that establishes a connection between the public network (Internet) at the time of 2 hosts, […]

Categories
UMN

Loop Statement in C

In this tutorial, we will study what is loop statements in c, why are they used, what are the types of loop statements, and how it works? So let us start. What are the loops statements in c? Loop statements in any language are used to execute a piece of the code number of times. […]

Categories
UMN

Decision Making statements in C

In this tutorial, we will study decision making statements in c, the if statement, else statement, and the if-else statement. What are the decision making statements? Decision Making can be understood by using an example, the age of the student is stored in two-variables but if we want to print the age of the student […]