JavaScript – Printing the Periodic Table
The periodic table is a tabular arrangement of the chemical elements, ordered by their atomic number, electron configuration, and recurring […]
Programming powers modern technology — from desktop software and websites to mobile apps, games and enterprise systems. Strong programming skills remain essential for developers, students and technology professionals building modern digital solutions.
MYCPLUS has been publishing programming tutorials, source code examples and practical development guides since 2004. This programming hub brings together tutorials for C, C++, C#, Java, JavaScript, PHP and Python, along with game development and real-world coding examples designed for hands-on learning.
You will find beginner-friendly programming tutorials, practical source code examples and advanced development guides covering object-oriented programming, debugging, modern programming techniques and professional software development practices. Whether you are learning your first language, improving coding skills or exploring modern development technologies, this section provides structured resources for real-world programming and software engineering.
Why MYCPLUS: One of the web’s longest-running programming resources — trusted since 2004 with hundreds of tutorials, practical coding guides, source code examples and developer learning resources designed for real-world programming skills.
The periodic table is a tabular arrangement of the chemical elements, ordered by their atomic number, electron configuration, and recurring […]
Does it ever bother you how much a long-distance phone call is going to cost, after you hung up? With
It’s often necessary to make a script only accessible to the newer browsers (that can support the script without error)
This JavaScript code does a great job of displaying information about your web browser. Information includes Browser Name, Version, your computer’s OS platform, and whether Java is enabled.
This is a simple JavaScript Program to show Date and Time Stamp on a webpage. In this script we define a JavaScript function named getFormattedDateTime. This function uses the Date object to get the current date and time. It then formats them into a human-readable string.
This is a small script that can display the current time in “Military Time” format or “12 Hour Time” format with the push of a button. It shows two radio buttons to change the time format and a text box to display the time.
In JavaScript, we use braces {} for creating an empty object and brackets [] for creating an empty array. I find the Developer console in Mozilla Firefox or Google Chrome more convenient to print out any object and study the details.
This is a simple C++ program to make a car race game. It uses object oriented approach to generate different objects in the game such as using Car, Obstacle and Timer classes.
SWAT GAME /******************************************************* * MYCPLUS Sample Code – https://www.mycplus.com * * * * This code is made available as a
This C++ date class is intended to illustrate how to write a non- trivial class in C++. Even though this
The following C++ program demonstrates the concept of constructors and destructors in C++.
Simple class program /******************************************************* * MYCPLUS Sample Code – https://www.mycplus.com * * * * This code is made available as