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

    Relational operators in C with code examples

    Relational operators in C are used to compare values and return a result as true (1) or false (0). These operators allow you to compare variables and expressions, making them …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C arithmetic operators with code examples

    In C programming, arithmetic operators are used to perform basic mathematical operations like addition, subtraction, multiplication, division, and modulus. Arithmetic operators work with numerical values and produce a result based …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C constants tutorial with code examples

    In C programming, constants are fixed values that cannot be changed during the execution of a program. Constants help make code more readable and maintainable by using descriptive names for …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C Type conversion tutorial with code examples

    Type conversion (also known as type casting) in C refers to converting a variable from one data type to another. C supports two types of type conversion: Implicit Type Conversion …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C Variables tutorial with code examples

    In C programming, variables are used to store data that can be used and manipulated throughout a program. A variable has a specific data type, a name, and it occupies …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C Comment tutorial with code examples

    Comments in C are used to explain code, improve readability, and make maintenance easier. They are ignored by the compiler, so they don’t affect the program’s execution. There are two …

    Read more
    0 FacebookTwitterPinterestEmail
  • CTutorials

    C Data types tutorial with code examples

    In C programming, understanding data types is essential since they define the type of data that can be stored in a variable, as well as the memory allocated and the …

    Read more
    0 FacebookTwitterPinterestEmail
  • CheatsheetsJavaScript

    JavaScript Language Cheat Sheet

    Table of Contents Toggle 1. Basic Syntax2. VariablesDeclaration:Types of Variables:3. OperatorsConditional Statementsif-else Statement:switch Statement:Loopsfor Loop:while Loop:do-while Loop:5. FunctionsFunction Declaration:Function Expression:Arrow Function:Default Parameters:6. ArraysArray Declaration:Accessing Elements:Array Methods:7. ObjectsObject Declaration:Accessing Object Properties:Object …

    Read more
    0 FacebookTwitterPinterestEmail
  • CCheatsheets

    C Language Cheat Sheet

    Table of Contents Toggle 1. Basic Syntax2. Data Types3. Input/Output4. Operators5. Control StructuresConditional StatementsLoops6. Functions7. Arrays8. Pointers9. Strings10. Structs11. Dynamic Memory Allocation12. File I/O13. Preprocessor Directives14. Commonly Used Library Functions15. …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    JavaScript Random Number Guessing Game

    In t his example we present a number guessing game Example(s)   function guessNumber() { // generating a random integer from 1 to 5 const random = Math.floor(Math.random() * 5) …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    JavaScript Program to Shuffle Deck of Cards

    In this article we show you a program that will simulate the shuffling of a deck of cards   Code   (function () { var cardWeights = [“1”, “2”, “3”, …

    Read more
    0 FacebookTwitterPinterestEmail
  • Basics

    Convert a string to upper case or lower case

    The toUpperCase() method returns the value of the string converted to uppercase. This method does not affect the value of the string itself since JavaScript strings are immutable. Example   …

    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

  • Tutorial: Constants in Rust Programming Language
  • Tutorial: Strings in Rust Programming Language
  • Tutorial: Functions in the Rust Programming Language
  • Tutorial: Arrays in Rust Programming Language
  • Tutorial: Tuples in the Rust Programming Language
  • Tutorial: Decision Making in Rust Programming Language
  • Tutorial: Operators in Rust Programming Language
  • Tutorial: Variables in Rust Programming Language
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
  • 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