Article on the subject of "variables"

  • How to Write PHP Scripts

    How to Write PHP Scripts

    php is a server scripting language used to make web pages interactive. it became widely popular due to its ease of use, interactivity within web pages, and integration with html. think of what happens when a page is edited on this website....
  • How to Learn to Program in C

    How to Learn to Program in C

    c is one of the older programming languages. it was developed in the 70s, but it is still very powerful thanks to how low-level it is. learning c is a great way to introduce yourself to more complex languages as well, and the knowledge you...
  • How to Enter Data in SPSS

    How to Enter Data in SPSS

    spss is a statistical analysis program that is used in a variety of fields, from market researchers to government agencies. it allows you to perform a variety of functions on your data, but you need data before you can do any of that....
  • Learn about custom variables in Google Analytics

    Learn about custom variables in Google Analytics

    custom variables are name-value pair tags (name-values) that you can insert into your code to refine google analytics tracking.
  • How to set environment variables in ZSH

    How to set environment variables in ZSH

    in zsh, you can easily set environment variables, either temporarily or permanently, depending on your needs.
  • Global variables (global), local variables (local), nonlocal variables in Python

    Global variables (global), local variables (local), nonlocal variables in Python

    in this python lesson you will learn about global variables, local variables, nonlocal variables in python and the use of these variables.
  • Declare variables in SQL Server

    Declare variables in SQL Server

    sql server fully exists the concepts of data types, variables and declarations of variables as other programming languages. the article will learn how to declare a variable, multiple variables and assign default values ​​to variables in sql server.
  • Global keywords in Python

    Global keywords in Python

    what does the global key do and how do i use it in python? please follow us.
  • Variable scope in C ++

    Variable scope in C ++

    we will learn what functions and parameters of functions are in the next chapter. below we will explain the concept of local variables and global variables.
  • Variables and their declaration in Pascal

    Variables and their declaration in Pascal

    if you're new to pascal, then take a look at the variables and declaration methods below to gain more useful knowledge, helping you understand and use pascal easily and effectively.
  • Variable in JavaScript

    Variable in JavaScript

    one of the most distinctive features of a program language is the set of data types it supports. this is the type of value that can be represented and manipulated in the program language.
  • How to add an environment variable in Windows 10

    How to add an environment variable in Windows 10

    windows 10 allows you to change or add custom environment variables. here are the steps to add an environment variable in windows 10.
  • Instructions for installing Unix / Linux

    Instructions for installing Unix / Linux

    an important unix concept is the environment, which is defined by environment variables. some are set up by the system, others are set up by you, by the shell or any program you download.
  • Use variables in Shell

    Use variables in Shell

    a variable is a string of characters from which we assign a value. the assigned value can be a number, text, file name, device or any other type of data.
  • Scope rules in programming C

    Scope rules in programming C

    a scope in any program is an area in the program where a defined variable exists and outside of that range the variable cannot be accessed.
  • stddef.h in C

    stddef.h in C

    the file header named stddef.h in c library defines various types of variables and macros. many of these definitions are also present in other headers.
  • PHP for PERL Programmers

    PHP for PERL Programmers

    this chapter will list some of the major similarities and differences between php and perl. this helps perl programmers understand php faster and avoid common errors.
  • Special variables in Unix / Linux

    Special variables in Unix / Linux

    the previous tutorial has warned about using special characters in your variable name. this is because these characters are used in the names of special variables in unix. these variables are kept for special functions.
  • How to set and list environment variables in Linux

    How to set and list environment variables in Linux

    if you want to do something that requires using the command line, you will still need to know about environment variables. this may seem like a complicated term, but actually environment variables are easy to understand.
  • C ++ exercises have solutions (sample code) for variables, data types, and operators

    C ++ exercises have solutions (sample code) for variables, data types, and operators

    in the previous c ++ exercises, tipsmake.com introduced, you were acquainted with many types of lessons, from simple to complex. in this c ++ exercise, we will become familiar with c ++ exercises on variables and data types in c ++.
  • Variable in C programming

    Variable in C programming

    a variable in c is nothing but a name given to storage memory so that the program can be manipulated. each variable in c has a defined type, to determine the size and layout for that variable memory. the range of values ​​that can be stored in memory, setting of expressions can be applied to
  • Data type in C / C ++

    Data type in C / C ++

    data type in c / c ++ while working with any programming language, you need to use various types of variables to store information. variables, nothing but memory locations are reserved for saving values. that is, when you create a variable, you reserved some space in memory for that variable.
  • REPL Terminal in Node.js

    REPL Terminal in Node.js

    repl is an acronym for read eval print loop (understandably: reading - evaluating - printing - repeating) and it represents the computer environment like the console screen in the linux shell where you can type the command line and the system the system will return the results. node.js also has a