Programming

Programming a computer is the act of creating and deploying an executable computer programme to achieve a certain computing result.

  • sqlite - programming - database

    Everything you need to know about SQLite

    SQLite is a powerful and popular database for many reasons. It is free, portable, and easy to use. SQLite is the most widely used database in the world, with an

  • introduction to nodejs

    Nodejs: An Introduction and its Uses

    Node.js is a server-side runtime environment for running JavaScript scripts. Although it was first published in 2009, it’s had a significant effect since

  • switch statement

    Switch Statement in C and C++ ? Where to use Switch Case?

    A switch statement is a control flow statement, which allows us to decide which statement will be executed, based on a condition. A switch statement has several

  • what are functions in c and c++?

    What are functions in C and C++?

    Functions in C and C++ are named blocks of code that perform a specific task. They provide a way to organize and modularize code, making it easier to write, und

  • string in c++

    What is a String in C++?

    A string is a sequence of characters in C++. In other programming languages, a string is often represented as an array of characters. However, in C++, the stand

  • pointers in c and c++

    What is Pointer in C and C++? | Quick Example

    A pointer is a variable that stores the address of another variable. That is, it points to another variable. For example, an integer variable holds (or stores)

  • programming

    Input and Output in C++ | Free C++ Ebook PDF Download

    In the programming language C++, input/output is accomplished via streams. A stream is an abstraction that represents a device on which input and output operati

  • data types and modifiers

    What are Datatypes and modifiers in C++?

    A datatype is used to restrict the variable with the type of data to be stored. Hence, one can define datatype as a way to tell the variables to store a particu

  • preprocessor in c

    What is a Preprocessor in C/C++?

    Have you ever thought about how computers know the commands you are writing? Have you seen that if you type the wrong syntax or data types, then it shows an err

  • sequence diagram vs system sequence diagram

    Difference between Sequence Diagram and a System Sequence Diagram

    Introduction Unified Modeling Language (UML) offers a standardized method for visualizing and designing software systems. Within UML, several diagram types are

Back to top button