A structure in “C” Language is a collection of the heterogeneous data type. Where you can store the value of different types in form of a grouped list in a single variable. The value of structure accessed using struct declared name or through the pointer. Structures are defined using Struct keyword. Continue reading
C / C++
Student Management System Project (C Language)
Student Managment System SMS, developed using c language to store information of students. This project is ideal for beginners and learners. The SMS project cover functionalities of add, edit, delete, find, update results, list students. Moreover, in this project, we use mouse pointer in DOS mode. Continue reading
Multiply Matrix and Multidimensional Array Operation
We have seen our previous post how to declare multidimensional arrays. Here we play with multidimensional arrays like Sum of Matrix, Multiply of Matrix etc. Continue reading
ATM Money Withdrawal Algorithm Using C Array
Hello, friends! We all uses ATM to withdraw money in our daily life. Ever thought how it is work behind ATM. As per Wikipedia Cash Machine is the origin name of ATM (automated teller machine) also it called ABM (automated banking machine). It is the combination of electromechanical hardware and software. Continue reading
What are the printf functions for C?
In general, printf () is a library function under C header file stdio.h and conio.h both. And generally, it is used for displaying an outcome of a program to outside world. Printf() function is often used to our program to do formatted output. Continue reading
C Operator and Precedence Table
In general, we know that Operator is a person who operates equipment or a machine. for a programming language, Operator is a symbol that tails compiler or an interpreter to perform specific mathematical or logical / relational manipulation. Continue reading
C Programming Lab Assessment (Diploma Engineering)
Lab Manual for Mechanical Dept.(3rd year)
Attention:
Dear Students, ME-A,ME-B1,ME-B2 (3rd Year) submit Your C Programming lab copy within 26/09/2016.
Program #1. Write a C program to perform addition , subtraction , multiplication and division of two numbers . Continue reading
C Program calculates the sum & average of an array
In the previous tutorial, we have seen the array definition, declaration, initialization and access array values. Now we use the array to solve real-life math problems. Continue reading
Using Arrays C Language with Example
In a single sentence, an Array is a container of the homogeneous data type. that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. Continue reading
Nested Loop with example C Language
When loop inside a loop is called nested loop. Working procedure of nested loop is that the first pass of the outer loop triggers the inner loop, which executes to completion. Then the second pass of the outer loop triggers the inner loop again. This repeats until the outer loop finishes. Continue reading