About 50 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() { …

  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. Why is %c used in C? - Stack Overflow

    Jun 8, 2012 · According to K&R C section 1.6, a char is a type of integer. So why do we need %c. And why can't we use %d for everything?

  5. c - Arrow Operator vs. Dot Operator - Stack Overflow

    Apr 5, 2012 · The 'arrow' operator is syntactic sugar. bar->member is the same as (*bar).member. One reason for the difference is maintainability. With the arrow operator distinct from the dot …

  6. What is the difference between += and =+ C assignment operators

    Where modern C uses +=, early C used =+. Early C had no unary + operator, but it did have a unary - operator, and the use of =- caused problems; programmers would write x=-y intending …

  7. Difference between & and && in C? - Stack Overflow

    Initially C didn't have logical operators and the binary operators were used as a substitute. When the logical operators such as && and || were added to the C language, the precedence of …

  8. 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. …

  9. string - What does % [^\n] mean in C? - Stack Overflow

    Sep 11, 2016 · In C, %[^\n] has no meaning. In the scanf formatting language (which is used by C) it means that your code has opened a very large vulnerability to an overflow exploit. …

  10. 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 …