About 2,110 results
Open links in new tab
  1. What is a programming language? - Stack Overflow

    A programming language is a set of symbols, defined by a formal grammar, that can be translated by a program to another set of symbols that a computer understand, to make this last to perform some …

  2. What is a computer programming language? - Stack Overflow

    What is a useful definition of a computer programming language and what are its basic and necessary components? I would say the defining characteristic of a programming language is as follows: things …

  3. syntax - What is the := operator? - Stack Overflow

    Nov 13, 2018 · In some programming languages, I see (ex.): x := y What is this := operator generally called and what does it do?

  4. Newest Questions - Stack Overflow

    16 hours ago · Stack Overflow | The World’s Largest Online Community for Developers

  5. What exactly is metaprogramming? - Stack Overflow

    In the 1970s, Robin Milner developed a MetaLanguage (ML) that evolved into the ML family of programming languages which includes Standard ML and OCaml and strongly influenced Haskell …

  6. aop - What is aspect-oriented programming? - Stack Overflow

    May 23, 2017 · I understand object oriented programming, and have been writing OO programs for a long time. People seem to talk about aspect-oriented programming, but I've never really learned what …

  7. What are vectors and how are they used in programming?

    In programming, this name "vector" was originally used to describe any fixed-length sequence of scalar numbers. A vector of length 2 represents a point in a 2D plane, a vector of length 3 represents a …

  8. Tour - Stack Overflow

    It's built and run by you as part of the Stack Exchange network of Q&A sites. With your help, we're working together to build a library of detailed, high-quality answers to every question about …

  9. The Definitive C Book Guide and List - Stack Overflow

    This question attempts to collect a community-maintained list of quality books on the c programming language, targeted at various skill levels. C is a complex programming language that is difficult to …

  10. What does "atomic" mean in programming? - Stack Overflow

    In programming, an atomic action is one that effectively happens all at once. An atomic action cannot stop in the middle: it either happens completely, or it doesn't happen at all.