Posts

Showing posts from December, 2016

A Simple C program to illustrate how a small bank program works

For some time I was working with my Dev C/ C++ compiler to make a C program that works like a small Bank Application. My affection with C language resulted in writing a small C program that shows how a Bank application can be made. I know in many schools here in India mainly CBSE/ ICSE Syllabus, if you have Computer as a subject in class XI & XII you have to make projects in C++ language. Those Projects helps improving your understanding & sharpen you coding skills. Though this program is entirely written in C programming language which is not taught in class XI & XII, but still students can learn this language as C is the mother of all the modern programming languages (if you love coding as I do). So now let's get right into the source code of the program. /*  PROGRAM RUN & COMPILED ON DEV-C++ 5.11 COMPILER   */ #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> #include<time.h> #include"bank.h