C program to print pyramid pattern of numbers

In this article, I write a c program to print pyramid pattern of numbers and explain to you how the c program works.     C program to print pyramid pattern of numbers   Let’s write a c program to print pyramid patterns of numbers.   Output – The program takes input from the userIn this article, I write a c program to print pyramid pattern of numbers and explain to you how the c program works.     C program to print pyramid pattern of numbers   Let’s write a c program to print pyramid patterns of numbers.   Output – The program takes input from the user […]

Read More…

Array in C with Example

In this article, we learn how array in c programming works and how you can use declare, iterate and use array in C language.   Array in C An array in C programming is a collection of elements of the same data type that are stored in contiguous memory locations. The elements of an arrayIn this article, we learn how array in c programming works and how you can use declare, iterate and use array in C language.   Array in C An array in C programming is a collection of elements of the same data type that are stored in contiguous memory locations. The elements of an array […]

Read More…

C program to store information of 10 students using structure

In this tutorial, we write a c program to store information of 10 students using structure. The information contains the name, roll number, marks, and city of 10 students.     You will learn how to store student information in structure and display it on the console as the output.   Let’s write a programIn this tutorial, we write a c program to store information of 10 students using structure. The information contains the name, roll number, marks, and city of 10 students.     You will learn how to store student information in structure and display it on the console as the output.   Let’s write a program […]

Read More…