About 284,000 results
Open links in new tab
  1. What does ^= mean in C/C++? - Stack Overflow

    Jan 2, 2021 · Also you should point out that its not just part of the C [++] language but its within many languages.

  2. c - What does tilde (~) operator do? - Stack Overflow

    I recently saw the above operator in a code,I googled for it but found nothing.The code is below.Please describe what actually does this operator do? #include<stdio.h> int main() { unsig...

  3. Why is C not considered an 'object-oriented' language?

    You can use OO principles effectively in C (and people who write good C code typically do), but the language is not built around making it easy, as many more recent languages are.

  4. pointers - Passing by reference in C - Stack Overflow

    The C language is pass-by-value without exception. Passing a pointer as a parameter does not mean pass-by-reference. The rule is the following: A function is not able to change the actual parameters …

  5. Why does the arrow (->) operator in C exist? - Stack Overflow

    Why does -> even exist? In one of the very first versions of C language (which I will refer as CRM for "C Reference Manual", which came with 6th Edition Unix in May 1975), operator -> had very exclusive …

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

    The C Programming Language (2nd Edition) - Brian W. Kernighan and Dennis M. Ritchie (1988). It is still a good, short, but complete, introduction to C (C89, not C99 or later versions), written by the …

  7. What does %s and %d mean in printf in the C language?

    Jan 27, 2012 · It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For …

  8. What is the newline character in the C language: \r or \n?

    Aug 22, 2013 · What is the newline character in C? I know that different OS have different line-ending characters, but they get translated into the C newline character. What is that character?

  9. What is the full "for" loop syntax in C? - Stack Overflow

    I have seen some very weird for loops when reading other people's code. I have been trying to search for a full syntax explanation for the for loop in C but it is very hard because the word "for" a...

  10. Is the C programming language object-oriented? - Stack Overflow

    May 20, 2017 · Object-oriented programming (OOP) is a programming paradigm that uses "objects" – data structures consisting of data fields and methods together with their interactions – to design …