Programmers help
Advertise here
  • Basics
  • Cheatsheets
  • Code Snippets
  • Exercises
  • JavaScript
  • Programs
  • Tutorials
  • Programs
  • Videos
  • C++Programs

    Reading from a file in C++

    In this example, we will show you how to open and read the contents of a file, in C++. Example In this example we open a file called fileexample.txt The …

    Read more
    0 FacebookTwitterPinterestEmail
  • C++Programs

    Determine if the Number is Prime in C++

    In this example we show how to tell if a number is a prime number or not in C++ Lets first talk about what a prime number is A prime …

    Read more
    0 FacebookTwitterPinterestEmail
  • C++Programs

    Check if a number is even or odd in C++

    In this article we show you how to check if a number is even or odd in C++ We use the modulus operation which returns the remainder obtained when number …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Convert Decimal to Binary in JavaScript

    In this article we show a simple way to convert a decimal number to a binary number using JavaScript Example 1 The user is prompted to enter a number. The …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    Display All Prime Numbers between 1 and 100 in JavaScript

    In this example we display all the prime numbers between 1 and 100. A prime number is a positive integer that is only divisible by 1 and itself Example // …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Check if its a Leap Year in JavaScript

    In this example we check if a year is a leap year Some examples use a formula to check if a year is a leap year, this example checks if …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Display the Current Date in JavaScript

    In this example we will display the current date and time in JavaScript Example 1 // get local machine date time const date = new Date(); // get the date …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    Compare Two Strings using RegEx in JavaScript

    In this example we will check that two strings match You will see that the pattern below has the following gi, this means Flags Description g Performs a global match …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Compare Two Strings in JavaScript

    In this example we will compare 2 strings to see if they are a match Example 1 First of all we convert the strings to lowercase using .toLowerCase() method, you …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    Replace All Occurrence of String Using RegEx in JavaScript

    In this example we will replace a string in another string using JavaScript This time will use regular expressions We will define a string, then we will define t he …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Generate Random Strings in JavaScript

    In this example we show you how to generate random strings in JavaScript Example 1 We will define a list of characters which will include lower and upper case A …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Display a Multiplication Table in JavaScript

    In  this example we will show you how to generate a multiplication table Example 1 We take the user input and store in the constant number We then use a …

    Read more
    0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Great Offers

Get 12 Generative AI and LLM eBooks worth £324.88 for £9.00

Get 15 Data science eBooks worth £426.85 for £14.15

Get 7 OOP eBooks worth £205.93 for £7.55

Get 9 quantum computing eBooks worth £261.91 for £8.49

Tutorials

  • C Tutorials
  • C# Tutorials
  • C++ tutorials
  • Go Tutorials

Recent Posts

  • How to Fix DivideByZeroException in C# – Beginner-Friendly Guide
  • How to Fix IndexOutOfRangeException in C# – Simple Guide for Beginners
  • Tutorial: Structs in Rust Programming Language
  • How to Fix NullReferenceException in C# – A Beginner-Friendly Guide
  • How to Fix FileNotFoundError: [Errno 2] No such file or directory in Python
  • How to Safely Handle File Reading and Writing Errors in Python
  • How to Fix IOError: [Errno 13] Permission Denied in Python (Beginner Guide)
  • How to Fix IndexError: list index out of range in Python (Beginner Guide)
Advertise here

Donation Options

What its all for

PayPal


Kofi



Librepay



Patreon

Become a Patron!

Buy me a coffee

Categories

  • Assembly
  • Basics
  • C
  • C#
  • C++
  • Cheatsheets
  • Code Snippets
  • Ebooks
  • Exercises
  • Game Development
  • Go
  • HTML
  • Java
  • JavaScript
  • Node.js
  • PHP
  • Programs
  • Python
  • Resources
  • Rust
  • Tips
  • Tutorials
  • Videos

Other sites

http://learnmicropython.com

http://learningjava.net

http://maxjavascript.com

http://maxpython.com


Back To Top
Programmers help
  • Basics
  • Cheatsheets
  • Code Snippets
  • Exercises
  • JavaScript
  • Programs
  • Tutorials
  • Programs
  • Videos