C Tutorial

C Tutorial C Language Environment Setup Execution flow of C program C printf and Scanf C Data type C Token Variable in C Operators in C Comments in C Escape Sequence in C C – Storage Classes C Decision control statement Loop Statement in C Break, continue and goto statement in C Type Casting in C Function in C Recursion in C String in C C Array Pointer in C Dynamic memory allocation C –Structure Nested Structure in C Union in C File Handling in C C pre-processor Static Function In C Sizeof In C Selection Sort In C Scope Of Variables In C Runtime Vs Compile Time In C Random Access Lseek In C Queue Implementation In C Pseudo Code In C Prototype In C Pointer To Pointer In C Pointer Arithmetic In C Passing Array To Function In C Null Character In C Merge Sort In C Macros In C Library Functions In C Memory Leak In C Int In C Goto And Labels In C Fibonacci Series In C Fflush In C Derived Data Types In C Data Types In C Const Vs Volatile In C Character Set In C Character Class Tests In C Calloc In C C Pointers Arrays In C Include In C Clrscr In C C Vs Java String Literals In C Types Of Pointers In C Variables In C Volatile In C Why C Is A Middle Level Language Infix To Postfix Program In C Ceil function in C LCM of two numbers in C Quick sort in C Static in C function pointer as argument in C Top Array Keywords in C Add two numbers using the function in C Armstrong program in C using function Array, Declaring Arrays and Array Initialization Limitations of Inline Function in C Merge and Merge sort with example in C Do-While Loop in C For Loop in C While-Loop in C Difference between while and do-while loop in C Array Of Structures in C Data Structures And Algorithms in C Types Of Structures In C How to Avoid Structure Padding in C Use of Structure in C Do WHILE LOOP in C Programming Examples For Loop in C Programming Examples Entry Control Loop in C Exit control loop in C Infinite loop in C Nested loop in C pow() function in C String Handling functions in C Prime Number code in C Factorial Program in C using For Loop Factorial Program in C Using While Loop Fibonacci Series in C Using For Loop Fibonacci series in C using while loop Prime Number Program in C using for Loop While Loop in C programming examples Built-in functions in C Assert() Function C vs Java Strings Call Back Function in Embedded C Else If Ladder fgets() function Ftell() Function getc() function getch() function gets() function Heap Sort Nested if-else statement Pi() Function Positioning of file Write() function abs() function in C Attributes in C C program to find factorial of a number using Recursion Ferror() in c fopen() function in C Fibonacci series program in C using Recursion Formatted Input and output function in C Snake Game in C User Defined Functions in C Beep() function in C Cbrt() function in C Hook() function in C Isalnum() function in C C Program to find the Roots of a Quadratic Equation C Switch Statements Difference between rand() and srand() function in C Difference between while and for loop in C Doubly Linked list in C Example of Iteration in C How to use atoi() function in C How to use floor() function in C How to use sine() function in C How to use Typedef Struct in C Integer Promotions in C C Program Swap Numbers in cyclic order Using Call by Reference C Program to Find Largest Number Using Dynamic Memory Allocation C Program to Find the Largest Number using Ternary Operator C/C++ Program to Find the Size of int, float, double and char Find the Largest Three Distinct Elements in an Array using C/C++ Loop Questions in C Modulus on Negative Numbers in C Multiplication table program in C using For loop Nested Loops in C Programming Examples C Program for Mean and Median of an Unsorted Array Results of Comparison Operations in C and C++ Reverse a Stack using Recursion in C Simple hash() function in C strcat() Function in C Sum of N numbers in C using For loop Use of free() function in C Write a program that produces different results in C and C++ C Function Argument and Return Values Keywords in C Bank management system in C Calendar application in C Floor() Function in C Free() Function in C How to delete a file in C How to move a text in C Remove an element from an array in C Unformatted input() and output() function in C What are linker and loader in C SJF Scheduling Program in C Socket Programming in C Structure in C Tower of Hanoi in C Union Program in C Variable Declaration in C What is Linked List in C While Loop Syntax in C fork() in C GCD program in C Branching Statements in C Comma Operator in C Control statement in C Double Specifier in C How to create a binary file in C Long int in C Palindrome Number in C Pure Virtual Function in C Run Time Polymorphism in C Types of Array in C Types of Function in C What is a buffer in C What is required in each C Program Associativity of Operators in C Bit Stuffing Program in C Actual and Formal Parameters Addition of two Numbers in C Advantages of function in C Arithmetic Progression Program in C Binomial Coefficient Program in C Difference between Array and List in C Diffie-Hellman Algorithm in C How to convert a number to words in C How to convert a string to hexadecimal in C Difference between If and Switch Statement in C C and C++ Binary Files C program that does not Suspend when Ctrl+Z is Pressed Different ways to Declare the Variable as Constant in C Range of Int in C C Program to find the size of a File FIFO Example in the C Language For loop in C Programming GCD program of two numbers in C GPA Calculator in C How to Calculate Time Complexity in C How to include graphics.h in C How to measure time taken by a function in C How to return a Pointer from a Function in C What is the main in C Addition of Matrix in C Booleans in C C Program for Extended Euclidean algorithms C Program of Fencing the Ground Ceil and Floor in C Compound Interest Program in C Displaying Array in C Distance Vector Routing Protocol Program in c Dos.h Header File in C Language DSA Program in C Explain the two-way selection in C Fee Management System in C File Operations in C Malloc function in C Multiplication Table in C Simple Programs in C Language tolower() Function in C Type Conversion in the C Why does sizeof(x++) not Increment x in C Advantages of Dynamic Memory Allocation in C Armstrong Number in C Assignment Operator Program in C Banker’s Algorithm in C Binary Search in C with Best and Worst Time Complexity Caesar Cipher Program in C Call by Value and Call by Reference in C Conditional Operator in C CRC Program in C Deadlock Detection Program in C Decimal to Binary in C Difference between If Else and Nested If Else in C Difference between Pre-increment and Post-increment in C Difference between Scope and Lifetime in C Evaluation of Arithmetic Expression in C Explain the Increment and Decrement Operators in C Fseek Function in C Functions in C How to Find Square Free Numbers in C Length of an Array Function in C OpenGL in C Projects on C language in 2023 Purpose of a Function Prototype in C Stdio.h in C Two-Dimensional array in C What is String Comparison in C

Bank Account System in C using File Handling

This tells about the creation of bank account system using the C language and handling of files in C.

Approach

Let us see the approaches and the functions how they are covering their explanations in detail:

  1. With the help of switch case statements, first we create a menu and for that menu, we create different functions in the function main. These are characterized into four different functions:
    • Account (): an account function is used to create a new account.
    • Transfer money (): Transfer money is a function used for transferring money.
    • Check balance ():   check balance is a function used for checking money in an account.
    • Login (): The Login function is used for account login.
  2. First account creation should be done by calling the function account (),
  3. After creation storing of the data should be done by using the file handling functions.
    After creation and storing next comes the transfer of money, now the user can transfer an amount by calling the function transfer money (), and after for checking the amount present in an account we call the function check balance ().

File handling concepts is used for the storing the data of the users and reading of the data from a file and storing of a structure because for reading and writing it is easy.

Implementation

Let’s see to a below program implementation of every module and at last merging all the modules because for creating a full working program.

1. Creating Bank Account

First, we should take all the input from the user and make structure for storing data in a file.

// creating account functions for users
void account(void)
{
 char password [20];
 int password length, i, seek = 0;
 char ch;
 FILE *fp, *fu;
 struct pass u1;
 struct user pass p1;
 struct user pass u2;
 // file opening is done for writing the data
 fp = fopen ("username.txt", "ab");
 // Inputs
 system("cls");
printf ("\n\n!!!!!CREATE ACCOUNT!!!!!");
printf ("\n\FIRST NAME..");
scanf ("%s", &u1. fname);
printf ("\n\n\n Last NAME..");
scanf ("%s", &u1. lname);
printf ("\n\n FATHER’s NAME..");
scanf ("%s", &u1. fathname);
printf ("\n\n MOTHER’s NAME..");
scanf ("%s", &u1. mothname);
printf ("\n\nADDRESS.");
scanf ("%s", &u1. address);
printf ("\n\nACCOUNT TYPE");
scanf ("%s", &u1. type account);
printf ("\n\nDATE OF BIRTH.");
 printf("\nDATE-");
scanf ("%d", &u1. date);
 printf("\nMONTH-");
scanf ("%d", &u1. month);
 printf("\nYEAR-");
scanf ("%d", &u1. year);
printf ("\n\nADHAR NUMBER");
scanf ("%s", u1. adharnum);
printf ("\n\nPHONE NUMBER");
scanf ("%s", u1. pnumber);
printf ("\n\nUSERNAME. ");
scanf ("%s", &u1. username);
printf ("\n\nPASSWORD.");
 // password is taken with the help of stars
 for (i = 0; i < 50; i++)  
 {
   ch = getch ();
   if (ch! = 13)  
   {
     password[i] = ch;
     ch = '*';
printf ("%c", ch);
   }
Else
 break;
 }
 // file writing
fwrite (&u1, size of(u1), 1, fp);
 // closing of a file
 fclose(fp);
 // one more function is called after account creation
account created ();
}

2. Transfer Money

First take a username for transferring the money and write the amount in file after opening record.

Example:

// for transferring money function used
void transfer money(void)
{
 int i, j;
 FILE *fm, *fp;
 struct pass u1;
 struct money m1;
 char usernamet [20];
 char usernamep [20];
 system("cls");
 // for reading name of a user opening file
 fp = fopen ("username.txt", "rb");
 // // Another file is created
//writing username and amount for knowing to whom transferring
 fm = fopen ("mon.txt", "ab");
gotoxy (33, 4);
printf ("---- TRANSFER MONEY ----");
gotoxy (33, 5);
printf ("========================");
gotoxy (33, 11);
printf ("FROM (your username).. ");
scanf ("%s", &usernamet);
gotoxy (33, 13);
printf (" TO (username of person)..");
scanf ("%s", &usernamep);
 //looks for the username whether it is present on that file or not
 while (fread (&u1, size of(u1), 1, fp))
 {
   if (strcmp (usernamep,
              u1.username) == 0)  
   {
strcpy (m1.usernameto,
            u1.username);
strcpy (m1. userpersonfrom, usernamet );
   }
 }
gotoxy (33, 16);
 // input is amount 
printf ("ENTER THE AMOUNT TO BE TRANSFERRED..");
scanf ("%d", &m1. money1);
 // Writing to the file
fwrite (&m1, size of(m1), 1, fm);
gotoxy (0, 26);
printf (
   "--------------------------------------------------"
   "--------------------------------------------");


gotoxy (0, 28);
printf (
   "--------------------------------------------------"
   "--------------------------------------------");
gotoxy (0, 29);
printf ("transferring amount, please wait..");
gotoxy (10, 27);
 for (i = 0; i < 70; i++)
 {
   for (j = 0; j < 1200000; j++)  
   {
     j++;
     j--;
   }
printf ("*");
 }
gotoxy (33, 40);
printf ("AMOUNT SUCCESSFULLY TRANSFERRED....");
getch ();
 // file closing
 fclose(fp);
 fclose(fm);
 display(usernamet);
}

3. Checking Balance

Opening a file containing all the transfer records, reading them one at a time, and comparing them to the username supplied to the function to retrieve the appropriate transfer records.

Example:

void check balance (char username2[])
{
 system("cls");
 FILE* fm;
 struct money m1;
 char ch;
 int i = 1, summoney = 0;
 fm = fopen ("mon.txt", "rb");
 int k = 5, l = 10;
 int m = 30, n = 10;
 int u = 60, v = 10;
gotoxy (30, 2);
printf ("==== BALANCE DASHBOARD ====");
gotoxy (30, 3);
printf ("***************************");
gotoxy (k, l);
printf ("S no.");
gotoxy (m, n);
printf ("TRANSACTION ID");
gotoxy (u, v);
 printf("AMOUNT");
 while (fread (&m1, size of(m1), 1, fm))  
 {
   if (strcmp (username2,  
              m1. username to) == 0)  
   {
gotoxy (k, ++l);
printf ("%d", i);
     i++;
gotoxy (m, ++n);
printf ("%s", m1. user person from);
gotoxy (u, ++v);
printf ("%d", m1. money1);
     summoney = summoney + m1. money1;
   }
 }
gotoxy (80, 10);
printf ("TOTAL AMOUNT");
gotoxy (80, 12);
printf ("%d", summoney)
 fclose(fm);
 display(username2);
}

4. Login Functionality

In order to provide login capability, we open the file, compare the username entered by the user during registration, and, if the username is accurate and matches the record already in our file, log the user in.

Example:

// logic function for checking username
void login(void)
{
 system("cls");
 char username [50];
 char password [50];
 int i, j, k;
 char ch;
 FILE *fp, *fu;
 struct pass u1;
 struct user pass u2;
 fp = fopen ("username.txt", "rb");
 if (fp == NULL)  
 {
printf ("ERROR IN OPENING FILE");
 }


gotoxy (34, 2);
printf (" ACCOUNT LOGIN ");
gotoxy (7, 5);
printf ("***********************************************"
        "********************************");
gotoxy (35, 10);
printf ("==== LOG IN ====");
gotoxy (35, 12);
printf ("USERNAME.. ");
scanf ("%s", &username);
gotoxy (35, 14);
printf ("PASSWORD..");
 for (i = 0; i < 50; i++)  
 {
   ch = getch ();
   if (ch! = 13)
   {
     password[i] = ch;
     ch = '*';
printf ("%c", ch);
   }
   else
     break;
 }


 // Checking name of the user exists or not
 while (fread (&u1,   size of(u1), 1, fp))  
 {
   if (strcmp (username,  
              u1. username) == 0)  
   {
loginsu ();
     display(username);
   }
 }


 // file closing
 fclose(fp);
}
void loginsu(void)
{
 int i;
 FILE* fp;
 struct pass u1;
 system("cls");
printf ("Fetching account details.....\n");
 for (i = 0; i < 20000; i++)  
 {
   i++;
   i--;
 }
gotoxy (30, 10);
printf ("LOGIN SUCCESSFUL....");
gotoxy (0, 20);
printf ("Press enter to continue");
getch ();
}
Bank Account System in C using File Handling
Bank Account System in C using File Handling
Bank Account System in C using File Handling
Bank Account System in C using File Handling