About 50 results
Open links in new tab
  1. 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...

  2. 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 binary …

  3. pointers - Arrow operator (->) usage in C - Stack Overflow

    Apr 4, 2010 · 347 I am reading a book called "Teach Yourself C in 21 Days" (I have already learned Java and C# so I am moving at a much faster pace). I was reading the chapter on pointers and the …

  4. 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 difficul...

  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 operator, it …

  6. How to initialize a struct in accordance with C programming language ...

    Is this the way to declare and initialize a local variable of MY_TYPE in accordance with C programming language standards (C89, C90, C99, C11, etc.)? Or is there anything better or at least working? …

  7. .c vs .cc vs. .cpp vs .hpp vs .h vs .cxx - Stack Overflow

    Possible Duplicates: *.h or *.hpp for your class definitions What is the difference between .cc and .cpp file suffix? I used to think that it used to be that: .h files are header files for C and C...

  8. MIN and MAX in C - Stack Overflow

    Aug 9, 2010 · Where are MIN and MAX defined in C, if at all? What is the best way to implement these, as generically and type safely as possible? (Compiler extensions/builtins for mainstream compilers …

  9. Why C language isn't Object Oriented language even though it has ...

    May 26, 2021 · A problem with this question is that in order to give an answer, we first need to define "what is an object oriented language". An OO language like C++ has many features mapped into the …

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