C is a general-purpose computer programming language used for operating systems, games and other high performance work and is clearly distinct from C++. It was developed in 1972 by Dennis Ritchie for use with the Unix operating system.

learn more… | top users | synonyms

915
votes
24answers
84k views

What is the name of this operator: “-->”?

After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code: ...
473
votes
8answers
47k views

Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?

I am doing some numerical optimization on a scientific application. One thing I noticed is that, GCC will not recognize pow(a,6), and will call the library function pow, (although it recognizes ...
412
votes
7answers
92k views

Why is one loop so much slower than two loops?

Suppose a1, b1, c1, and d1 point to heap memory and my numerical code has the following core loop. const int n=100000 for(int j=0;j<n;j++){ a1[j] += b1[j]; c1[j] += d1[j]; } This loop ...
325
votes
107answers
153k views

Printing 1 to 1000 without loop or conditionals [closed]

Task: Print numbers from 1 to 1000 without using any loop or conditional statements. Don't just write the printf() or cout statement 1000 times. How would you do that using C or C++?
274
votes
8answers
17k views

In C arrays why is this true? a[5] == 5[a]

As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a] Joel says that it's because of pointer ...
235
votes
27answers
24k views

Interview question: Check if one string is a rotation of other string [closed]

A friend of mine was asked the following question today at interview for the position of software developer: Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ? Example: ...
229
votes
9answers
6k views

Why does sizeof(x++) not increment x?

Here is the code compiled in dev c++ windows: #include <stdio.h> int main() { int x = 5; printf("%d and ", sizeof(x++)); // note 1 printf("%d\n", x); // note 2 return 0; } I ...
226
votes
15answers
85k views

How do you set, clear and toggle a single bit in C?

How to set, clear and toggle a bit in C?
224
votes
3answers
6k views

What does the C ??!??! operator do?!

I saw a line of C that looked like this: !ErrorHasOccured() ??!??! HandleError(); It compiled correctly and seems to run ok. It seems to like it's checking if an error has occurred, and if it has, ...
192
votes
30answers
13k views

What are the barriers to understanding pointers and what can be done to overcome them?

Why are pointers such a leading factor of confusion for many new, and even old, college level students in C or C++? Are there any tools or thought processes that helped you understand how pointers ...
183
votes
2answers
91k views

What is a typedef enum in Objective C?

I don't think I fundamentally understand what a enum is, and when to use it. For example: typedef enum { kCircle, kRectangle, kOblateSpheroid } ShapeType; What is really being ...
160
votes
73answers
20k views

What is the worst real-world macros/pre-processor abuse you've ever come across? [closed]

What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)? Please add a short snippet or story if it is really entertaining. The goal ...
158
votes
30answers
13k views

The Definitive C Book Guide and List

To follow the example of The Definitive C++ Book Guide and List for C Books here is a wiki post for organization. A tag search for "C" and "Books" returns no complete book list results as of writing ...
142
votes
14answers
5k views

int a[] = {1,2,}; Weird comma allowed. Any particular reason?

Maybe I am not from this planet, but it would seem to me that the following should be a syntax error: int a[] = {1,2,}; //extra comma in the end But it's not. I was surprised when this code ...
140
votes
4answers
3k views

Is 0 a decimal literal or an octal literal?

Zero is always zero, so it doesn't matter. But in a recent discussion with my friend he said that octal literals are almost unused today. Then it dawned upon me that actually almost all integer ...
138
votes
55answers
22k views

Hidden features of C

I know there is a standard behind all C compiler implementations, so there should be no hidden features. Despite that, I am sure all C developers have hidden/secret tricks they use all the time.
137
votes
78answers
16k views

Should I learn C? [closed]

Original Question: Should I Learn C? In the theme of the stackoverflow podcast, here's a fun question: should I learn C? I expect Jeff & Joel will have something to say on this. Some info on my ...
136
votes
17answers
49k views

Is there a good Valgrind substitute for Windows?

I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a ...
135
votes
38answers
35k views

What is your favorite C programming trick? [closed]

For example, I recently came across this in the linux kernel: /* Force a compilation error if condition is true */ #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) So, in ...
134
votes
0answers
4k views

Why doesn't c = a+++++b work in C? [closed]

Possible Duplicate: Please help me understanding the error a+++++b in C In a discussion today the topic of pre/post increment came up. We tried several combinations of addition and ...
132
votes
15answers
50k views

Vim and Ctags tips and tricks [closed]

I have just installed Ctags (to help with C++ development) with my Vim (or rather gVim), and would like to find out your favorite commands, macros, shortcuts, tips that go along with it... Share your ...
129
votes
25answers
16k views

Learning game programming

Quick question: I've been in the web-dev world for several years now, I've wrapped my head around Java, Python, PHP, C# and Ruby- and currently make my living as a C#.NET programmer and I want to ...
127
votes
12answers
23k views

Fastest sort of fixed length 6 int array

Answering to another StackOverflow question (this one) I stumbled upon an interesting sub-problem. What is the fastest way to sort an array of 6 ints ? As the question is very low level: we can't ...
119
votes
7answers
28k views

Absolute Beginner's Guide to Bit Shifting?

I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ... What I'm wondering is, at a core level, what does ...
117
votes
29answers
11k views

What do people find difficult about C pointers?

From the number of questions posted here, it's clear that people have some pretty fundemental issues when getting their heads around pointers and pointer arithmetic. I'm curious to know why. They've ...
117
votes
28answers
22k views

Unit Testing C Code

I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java ...
115
votes
15answers
6k views

Hello world in C with no semi-colons?

I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it. Can you write Hello World in C without using any semi-colons? If ...
114
votes
12answers
50k views

So you think you know pointers?

I was shown this recently, and thought this was a really cool piece of code. Assume 32-bit architecture. #include <stdio.h> int main(void) { int x[4]; printf("%p\n", (void*) (x)); ...
113
votes
34answers
8k views

When is assembler faster than C?

One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. ...
112
votes
14answers
7k views

What's the rationale for null terminated strings?

As much as I love C and C++, I can't help but scratch my head at the choice of null terminated strings: Length prefixed (i.e. Pascal) strings existed before C Length prefixed strings make several ...
112
votes
38answers
12k views

What is your most useful C/C++ utility? [closed]

It seems that every project has a "utility" module with various code snippets used throughout other files and which doesn't fit any particular pattern. What utility classes, functions, and macros do ...
107
votes
3answers
3k views

Once upon a time, when > was faster than < … Wait, what?

I am reading a wonderful OpenGL tutorial. It's unbelievably great, trust me. The topic I am currently at is Z-buffer. Aside from explaining what's it all about, the author mentions that we can perform ...
106
votes
9answers
7k views

Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell

I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
98
votes
47answers
9k views

Are memory leaks ever ok?

Is it ever acceptable to have a memory leak in your C or C++ application? What if you allocate some memory and use it until the very last line of code in your application (for example, a global ...
98
votes
8answers
11k views

Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?

In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless do while loop. Here are examples. #define FOO(X) do { f(X); g(X); } while (0) #define FOO(X) if (1) { ...
97
votes
8answers
17k views

What is the strict aliasing rule?

When asking about common undefined behavior in C, souls more enlightened than I referred to the strict aliasing rule. What are they talking about?
93
votes
4answers
12k views

How do I improve the performance of SQLite?

Optimizing SQLite is tricky. Bulk-insert performance of a C application can vary from 85 inserts-per-second to over 96 000 inserts-per-second! Background: We are using SQLite as part of a desktop ...
93
votes
20answers
29k views

Best way to detect integer overflow in C/C++

I was writing a program in C++ to find all solutions of a^b = c (a to the power of b), where a, b and c together use all the digits 0-9 exactly once. The program looped over values of a and b, and ran ...
91
votes
15answers
3k views

Are there any smart cases of runtime code modification?

Can you think of any legitimate (smart) uses for runtime code modification (program modifying it's own code at runtime)? Modern operating systems seem to frown upon programs that do this since this ...
89
votes
11answers
4k views

Is 'switch' faster than 'if'?

Is a switch statement actually faster than an if statement? I ran the code below on Visual Studio 2010's x64 C++ compiler with the /Ox flag: #include <stdlib.h> #include <stdio.h> ...
89
votes
19answers
16k views

Why can't variables be declared in a switch statement?

I've always wondered this - why can't you declare variables after a case label in a switch statement? In C++ you can declare variables pretty much anywhere (and declaring them close to first use is ...
88
votes
8answers
5k views

What's wrong with this 1988 C code?

I'm trying to compile this piece of code from the book "The C Programming Language" (K & R). It is a bare-bones version of the UNIX program wc: #include <stdio.h> #define IN 1; /* ...
87
votes
9answers
27k views

Solve the memory alignment in C interview question that stumped me

I just finished a test as part of a job interview, and one question stumped me - even using google for reference. I'd like to see what the stackoverflow crew can do with it: The “memset_16aligned” ...
86
votes
4answers
2k views

how to achieve 4 flops per cycle

How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achieved on a modern x86-64 Intel cpu? As far as I understand does it take 3 cycles for an sse ...
85
votes
17answers
3k views

What's the point of const pointers?

I'm not talking about pointers to const values, but const pointers themselves. I'm learning C and C++ beyond the very basic stuff and just until today I realized that pointers are passed by value to ...
85
votes
11answers
2k views

How are everyday machines programmed?

I'm an undergraduate CS student, and I'm currently taking my required Operating Systems course. I originally thought the material would be quite dry, but to my surprise I'm really interested in it. ...
85
votes
12answers
10k views

What is the difference between #include <filename> and #include “filename”?

In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an include statement, as follows? #include <filename> #include "filename"
83
votes
13answers
5k views

Is multiplication and division using shift operators in C actually faster?

Multiplication and division can be achieved using bit operators, for example i*2 = i<<1 i*3 = (i<<1) + i; i*10 = (i<<3) + (i<<1) and so on. Is it actually faster to use say ...
82
votes
7answers
3k views

Is it safe to parse a /proc/ file?

Well, this is going to be a short one... I want to parse /proc/net/tcp/, but is it safe? I mean, how to open and read it and not be afraid, that some other process (or the OS) will be changing it in ...
82
votes
13answers
11k views

C++ versus D

Is the D language a credible alternative to Java and C++? What will it take to become a credible alternative? Should I bother learning it? Does it deserve evangelizing? The main reason I ask is that ...

1 2 3 4 5 996