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

  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. syntax - What does "static" mean in C? - Stack Overflow

    Feb 21, 2009 · In C programming, static is a reserved keyword which controls both lifetime as well as visibility. If we declare a variable as static inside a function then it will only visible …

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

    How to initialize a struct in accordance with C programming language standards Asked 16 years, 11 months ago Modified 2 months ago Viewed 1.4m times

  5. 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>.

  6. 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

  7. Newest 'c' Questions - Stack Overflow

    4 days ago · C is a general-purpose programming language used for system programming (OS and embedded), libraries, games, and cross-platform development, and is defined in the …

  8. What exactly is \\r in C language? - Stack Overflow

    Mar 10, 2012 · This code is clearly learning material for someone new to the C language. And someone new to the C language should be learning proper use of C, rather than non-portable …

  9. What is EOF in the C programming language? - Stack Overflow

    How do you get to see the last print? In other words what to put in for EOF? I checked the definitions and it says EOF is -1. And if you enter Ctrl-D you won't see anything. #include …

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