About 1,210,000 results
Open links in new tab
  1. c - What does tilde (~) operator do? - Stack Overflow

    If you need to look up a symbol or operators for a particular programming languages, it's best to simply search for the language (like "C++ programming language").

  2. What is the difference between C, C99, ANSI C and GNU C?

    May 22, 2017 · C is a general-purpose programming language initially developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs. C99 is a standard of the C language …

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

  4. syntax - What does "static" mean in C? - Stack Overflow

    Feb 21, 2009 · This is encapsulation, a good practice. Quoting Wikipedia: In the C programming language, static is used with global variables and functions to set their scope to the containing …

  5. How do you do exponentiation in C? - Stack Overflow

    Oct 17, 2008 · How do you do exponentiation in C? Asked 17 years, 1 month ago Modified 11 months ago Viewed 355k times

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

    The first edition of The C Programming Language by Kernighan and Ritchie, published in 1978, shows the modern -=, +=, et al, but mentions the older forms under "Anachronisms".)

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

    Jan 27, 2012 · 2 %s is for string %d is for decimal (or int) %c is for character It appears to be chewing through an array of characters, and printing out whatever string exists starting at each …

  8. What does void mean in C, C++, and C#? - Stack Overflow

    Jul 9, 2023 · The PARLANSE programming language implements the above ideas pretty closely. We goofed in its design, and didn't pay close attention to "void" as a return type and thus have …

  9. colors - stdlib and colored output in C - Stack Overflow

    Jul 10, 2010 · I am making a simple application which requires colored output. How can I make my output colored like emacs and bash do? I don't care about Windows, as my application is …

  10. What is the difference between C and embedded C?

    Oct 24, 2008 · In the C standard, a standalone implementation doesn't have to provide all of the library functions that a hosted implementation has to provide. The C standard doesn't care …