About 2,920,000 results
Open links in new tab
  1. 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 …

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

  3. 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() { …

  4. What function is to replace a substring from a string in C?

    Given a (char *) string, I want to find all occurrences of a substring and replace them with an alternate string. I do not see any simple function that achieves this in <string.h>.

  5. and the & operators in c programming? - Stack Overflow

    Aug 10, 2016 · What is the difference between the * and the & operators in c programming? Asked 15 years, 6 months ago Modified 9 years, 2 months ago Viewed 52k times

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

    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 …

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

    Feb 21, 2009 · In C programming, files are often used to represent "classes", and static variables represent private static members of the class. What standards say about it C99 N1256 draft …

  8. What is your favorite C programming trick? - Stack Overflow

    Oct 14, 2011 · What is your favorite C programming trick? [closed] Asked 16 years, 8 months ago Modified 8 years, 1 month ago Viewed 152k times

  9. How would one write object-oriented code in C? [closed]

    What are some ways to write object-oriented code in C? Especially with regard to polymorphism. See also this Stack Overflow question Object-orientation in C.

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