Tag: C/C++
November 24, 2013
6502, 8 bit, c / c++, code, compiler, implementation, interpreter / compiler, Nintendo Entertainment System, programming languages, windows
In the last tutorial, I have shown you how to create a ‘Hello World’ program for 6502 CPU (it works perfectly in NES emulator). Now, in this tutorial, I …
6502 CPUs were a massive success back in the 80s and early 90s. The 6502 CPU is 8-bit only but there were many many successfully games written for this …
A Stack is a data structure that satisfies Last-In-First-Out. It can be considered as a pile of plates where you always take the top plate (you put on last). …
Well, most people, when they start programming in C/C++, they would like to print something cool under console. Console, without graphics, is suitable for plain-text, i.e. ASCII code from …
Question: Given an integer (maximum 100), compute the number of distinct ways to split the number using non-negative integer numbers. For example, given 5, there are 7 ways to …