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.
2014
votes
17answers
135k views
What is the name of this operator: “-->”? [closed]
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:
...
717
votes
10answers
113k 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 ...
674
votes
7answers
56k 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 optimize the call pow(a,2) by compiling it into a*a, but the call pow(a,6) is not optimized and ...
570
votes
4answers
48k views
Obfuscated C Code Contest 2006. Please explain sykes2.c
How does this C program work?
main(_){_^448&&main(-~_);putchar(--_%64?32|-~7[__TIME__-_/8%8][">'txiZ^(~z?"-48]>>";;;====~$::199"[_*2&8|_/64]/(_&2?1:8)%8&1:10);}
It ...
562
votes
4answers
46k views
What is “:-!!” in C code?
I bumped into this strange macro code in /usr/include/linux/kernel.h:
/* Force a compilation error if condition is true, but also produce a
result (of value 0 and type size_t), so the expression ...
482
votes
10answers
26k 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 ...
475
votes
6answers
183k views
What is a typedef enum in Objective-C?
I don't think I fundamentally understand what an enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being ...
462
votes
5answers
70k views
How do I improve the performance of SQLite? [closed]
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 ...
447
votes
20answers
180k views
420
votes
46answers
58k views
Divide a number by 3 without using *, /, +, -, % operators
How would you divide a number by 3 without using *, /, +, -, %, operators?
The number may be signed or unsigned.
362
votes
31answers
44k views
The Definitive C Book Guide and List [closed]
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 ...
325
votes
106answers
180k 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++?
311
votes
15answers
22k views
Can code that is valid in both C and C++ produce different behavior when compiled in each language?
C and C++ have many differences, and not all valid C code is valid C++ code.
(By "valid" I mean standard code with defined behavior, i.e. not implementation-specific/undefined/etc.)
Is there any ...
302
votes
32answers
21k 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 ...
301
votes
3answers
9k 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, ...
300
votes
11answers
26k views
Why does a function with no parameters (compared to the actual function definition) compile?
I've just come across someone's C code that I'm confused as to why it is compiling. There are two points I don't understand.
First, the function prototype has no parameters compared to the actual ...
291
votes
9answers
9k 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 ...
288
votes
22answers
30k views
Which is better option to use for dividing an integer number by 2?
Which of the following techniques is the best option for dividing an integer by 2 and why?
Technique 1:
x = x >> 1;
Technique 2:
x = x / 2;
Here x is an integer.
255
votes
15answers
96k 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 ...
250
votes
12answers
37k 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"
245
votes
12answers
17k views
How many levels of pointers can we have?
How many pointers (*) are allowed in a single variable?
Let's consider the following example.
int a = 10;
int *p = &a;
Similarly we can have
int **q = &p;
int ***r = &q;
and so on.
...
240
votes
30answers
55k 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 ...
236
votes
4answers
30k 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 it take 3 cycles for an sse add ...
209
votes
14answers
9k 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 ...
206
votes
9answers
18k views
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) { ...
206
votes
5answers
6k 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 ...
205
votes
5answers
11k views
Extracting bits with a single multiplication
I saw an interesting technique used in an answer to another question, and would like to understand it a little better.
We're given an unsigned 64-bit integer, and we are interested in the following ...
205
votes
9answers
14k views
Do I cast the result of malloc?
In this question, someone suggested in a comment that I should not cast the results of malloc, i.e:
int *sieve = malloc(sizeof(int)*length);
rather than:
int *sieve = (int ...
204
votes
14answers
423k views
How to initialize an array in C
I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, ...
202
votes
9answers
26k 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 ...
197
votes
8answers
37k 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?
194
votes
21answers
41k 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 ...
188
votes
12answers
16k views
Where do I find the current C or C++ standard documents?
For many questions, especially for C-related ones, the answer seems to be found in "the standard". However, where do we find that - online?
Googling can sometimes feel futile, again especially for the ...
174
votes
13answers
51k 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” ...
173
votes
8answers
8k views
What is Linux’s native GUI API?
I hope this doesn’t come across as a stupid question but it’s always something I have wondered. Both Windows (Win32 API) and OS X (Cocoa) have their own APIs to handle windows, events and other OS ...
170
votes
3answers
6k 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 ...
170
votes
16answers
28k 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 ...
166
votes
8answers
37k views
What Does {0} Mean in C?
When {0} is used to initialize an object in C/C++, what does it mean? I can't find any references to {0} anywhere, and because of the curly braces Google searches are not helpful.
Example code:
...
165
votes
33answers
16k 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. ...
164
votes
3answers
5k views
What do the parentheses around a function name mean?
In one of my project source files, I found this C function definition:
int (foo) (int *bar)
{
return foo (bar);
}
Note: there is no asterisk next to foo, so it's not a function pointer. Or is ...
164
votes
25answers
62k views
Best way to detect integer overflow in C/C++
I was writing a program in C++ to find all solutions of ab = c, 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 a digit-counting ...
163
votes
8answers
61k views
In C++ source, what is the effect of extern “C”?
What exactly does putting 'extern "C"' into C++ code do?
For example:
extern "C" {
void foo();
}
157
votes
13answers
10k 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 ...
151
votes
5answers
26k views
Is It Possible to NSLog C Structs (Like CGRect or CGPoint)?
I want to be able to debug C structures without having to explicitly type every property that they consist of.
i.e. I want to be able to do something like this:
CGPoint cgPoint = CGPointMake(0,0);
...
150
votes
6answers
57k views
unsigned int vs. size_t
I notice that modern C and C++ code seems to use size_t instead of int/unsigned int pretty much everywhere - from parameters for C string functions to the STL. I am curious as to the reason for this ...
149
votes
7answers
51k views
C/C++: Passing variable number of arguments around
Say I have a C function which takes a variable number of arguments: How can I call another function which expects a variable number of arguments from inside of it, passing all the arguments that got ...
148
votes
20answers
6k views
What exactly is a C pointer if not a memory address?
In a reputable source about C, the following information is given after discussing the & operator:
... It's a bit unfortunate that the terminology* [address of] *remains, because it confuses ...
148
votes
13answers
100k views
What is the difference between ++i and i++
In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?
147
votes
32answers
45k views
Can you write object oriented code in C?
Can you write object oriented code in C? Especially with regard to polymorphism.
See also: http://stackoverflow.com/questions/415452/object-orientation-in-c
147
votes
11answers
23k views
Is there a performance difference between i++ and ++i in C?
Is there a performance difference between i++ and ++i if the resulting value is not used?

