Posts

Showing posts with the label programs

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...

Top 5 sites to learn coding online you would love

Image
When I look at the future of education what i think is that there will be more online Courses available through websites. As modern technology is like perpetual source so as it's popularity among people. The fact is that if you want to learn coding or like this stuffs there are number of sites which offer online courses. There is technology all around us and one day will come when more of people  will take online courses that is the websites will be converted into full fledged room with access to all programming related things. In my very list I have made it very simple to understand, yet small (only 5 sites) but it looks really clear and easy to understand. The list constitute of the best online coding websites which is as follows: 5. Thenewboston. This site is just and must be highly recommended for beginners. This site was first named "TheNewBoston.com" and later on changed to "Buckysroom.com" (don't know why they changed it) and finally chang...

How to run C++ on your Android smartphone

Today I am feeling very good as I have searched a way to run C++ on my Android device. Do you know the Popular C++ compiler TC(Turbo C++) which is commonly known as CBSE Computer science students compiler. At my school this is the one in which I have programmed first. Only for Android phones. When we have to run Turbo C++ on windows we need something to write our codes. So we need DOSBOX to emulate turbo C++ , So here i have an android version of DOSBOX Emulator. Nowadays there are almost three most popular android app of dosbox emulator in Google Play Store Market. adosbox (Free) andosbox (paid) dosbox turbo (paid) Download any one of the above app, I recommend adosbox because it is free, fast and easy to use. Download Borland Turbo C/C++ from given link. Now extract the file onto your device, if you did not how to extract it download "ES FILE EXPLORER" (rated 4.5 on play store) from google play store and there is a option to extract file. Then you ...