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

119
votes
9answers
15k views

Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

int main(int argc, char ** argv) { int i = 0; i = i++ + ++i; printf("%d\n", i); // 3 i = 1; i = (i++); printf("%d\n", i); // 2 Should be 1, no ? volatile int u = 0; u = u++ ...
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 ...
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 ...
133
votes
17answers
24k views

What is the difference between a definition and a declaration?

As title says, the meaning of both eludes me.
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 ...
133
votes
7answers
17k views

Why isn't sizeof for a struct equal to the sum of sizeof of each member?

Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
101
votes
6answers
5k views

Undefined, unspecified and implementation-defined behavior

What is the difference between undefined, unspecified, and implementation-defined behavior in C and C++?
37
votes
14answers
9k views

Why do I get a segmentation fault when writing to a string?

The following code receives seg fault on line 2: char *str = "string"; str[0] = 'z'; printf("%s", str); While this works perfectly well: char str[] = "string"; str[0] = 'z'; ...
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?
208
votes
9answers
19k 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) { ...
483
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 ...
49
votes
6answers
59k views

How to find the 'sizeof'(a pointer pointing to an array)?

First off, here is some code: int main() { int days[] = {1,2,3,4,5}; int *ptr = days; printf("%u\n", sizeof(days)); printf("%u\n", sizeof(ptr)); return 0; } Is there a way to ...
303
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 ...
68
votes
9answers
26k views

What is the difference between char s[] and char *s in C?

In C, I can do like this: char s[]="hello"; or char *s ="hello"; So I wonder what is the difference? I want to know what actually happens in memory allocation during compile time and run time. ...
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
251
votes
12answers
38k 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"
32
votes
8answers
7k views

Is array name a pointer in C?

Is an array's name a pointer in C? If not, what is the difference between an array's name and a pointer variable?
82
votes
14answers
65k views

What should main() return in C/C++?

What way is the most efficient way and why? int main() or void main()? if int main() then return 1 or return 0?
165
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 ...
25
votes
5answers
3k views

Specifically, what's dangerous about casting the result of malloc?

Now before people start marking this a dup, I've read all the following, none of which provide the answer I'm looking for: C FAQ: What's wrong with casting malloc's return value? SO: Should I ...
25
votes
10answers
7k views

Sizeof an array in the C programming language?

why isn't the size of an array sent as a parameter the same as within main? #include <stdio.h> void PrintSize(int p_someArray[10]); int main () { int myArray[10]; printf("%d\n", ...
205
votes
14answers
424k 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, ...
26
votes
3answers
16k views

“while( !feof( file ) )” is always wrong

I've started seeing while( !feof( f )) in a lot of posts lately, and I haven't found a good link to reference to explain why that is wrong. So I thought I'd take a stab at explaining it here.
11
votes
7answers
9k views

how to read string entered by user in c

i want to read the name entered by my user using c programmes for this i wrote: chat name[20]; printf("Enter name:"); gets(name); but using gets is not good so suggest me a better way.
22
votes
3answers
33k views

OpenCV 2.3 C++ Visual Studio 2010

I'm trying to use opencv 2.3 with Visual Studio 2010 Express. My code is from example: #include "stdafx.h" #include <highgui.h> int _tmain(int argc, _TCHAR* argv[]) { int c; // ...
15
votes
12answers
8k views

Parameter evaluation order before a function calling in C

Can it be assumed a evaluation order of the function parameters when calling it in C ? According to the following program, it seems that there is not a particular order when I executed it. #include ...
449
votes
20answers
180k views

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

How to set, clear and toggle a bit in C?
195
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 ...
77
votes
8answers
40k views

Why does printf not flush after the call unless a newline is in the format string?

Why does printf not flush after the call unless a newline is in the format string? Is this POSIX behavior? How might I have printf immediately flush every time?
53
votes
20answers
16k views

Are global variables bad?

In C/C++, are global variables as bad as my professor thinks they are?
7
votes
2answers
1k views

strange output in comparison of float with float literal

float f = 0.7; if( f == 0.7 ) printf("equal"); else printf("not equal"); Why is the output not equal ? Why does this happen?
81
votes
4answers
55k views

What is the LD_PRELOAD trick?

I came across a reference to it recently on proggit and (as of now) it is not explained. I suspect this might be it, but I don't know for sure.
21
votes
7answers
3k views

what is array decaying?

what is decaying of array? is there any relation to the array pointers?
27
votes
4answers
2k views

What does 'unsigned temp:3' mean? [duplicate]

Possible Duplicate: What does this C++ code mean? I'm trying to map a C structure to Java using JNA. I came across something that I've never seen. The struct definition is as follows: ...
93
votes
10answers
50k views

“static const” vs “#define” in C

Which one is better to use among the below statements in C? static const int var=5; or #define var 5
62
votes
21answers
30k views

Detecting endianness programmatically in a C++ program

Is there a programmatic way to detect whether or not you are on a big-endian or little-endian architecture? I need to be able to write code that will execute on an Intel or PPC system and use exactly ...
63
votes
7answers
92k views

strdup() - what does it do in C?

What is the purpose of the strdup() function in C?
70
votes
9answers
7k views

C programming : How does free know how much to free?

In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to ...
30
votes
4answers
6k views

How come an array's address is equal to its value in C?

In the following bit of code, pointer values and pointer addresses differ as expected. But array values and addresses don't! How can this be? Output my_array = 0022FF00 &my_array = 0022FF00 ...
465
votes
5answers
71k 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 ...
90
votes
23answers
134k views

Is there a printf converter to print in binary format?

I can print with printf as a hex or octal number. Is there a format tag to print as binary, or arbitrary base? I am running gcc. printf("%d %x %o\n", 10, 10, 10); //prints "10 A 12\n" ...
37
votes
2answers
15k views

C preprocessor and concatenation

I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this: #define VARIABLE 3 #define ...
66
votes
17answers
37k views

Why use pointers?

I know this is a really basic question, but I've just started with some basic C++ programming after coding a few projects with high-level languages. Basically I have three questions: Why use ...
55
votes
2answers
11k views

What's the use of do while(0) when we define a macro? [duplicate]

Possible Duplicate: Do-While and if-else statements in C/C++ macros I'm reading the linux kernel and I found many macros like this: #define INIT_LIST_HEAD(ptr) do { \ (ptr)->next = ...
2018
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: ...
46
votes
13answers
87k views

C++ Timer function to provide time in nano seconds

I wish to calculate the time it took for an API to return a value. The time taken for such an action is in the space of nano seconds. As the API is a C++ class/function, I am using the timer.h to ...
79
votes
10answers
23k views

typedef struct vs struct definitions

I'm a beginner with C programming, but I was wondering what the difference was between the using typedef when defining a structure versus not using typedef. It seems to my like there's really no ...
102
votes
10answers
48k views

What does “static” mean in a C program?

I've seen the word static used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
26
votes
5answers
8k views

C String literals: Where do they go?

I have read a lot of posts about "string literals" on SO, most of which have been about best-practices, or where the literal is NOT located in memory. I am interested in where the string DOES get ...
130
votes
8answers
70k views

How do function pointers in C work?

I had some experience lately with function pointers in C. So going on with the tradition of answering your own questions, I decided to make a small summary of the very basics, for those who need a ...

1 2 3 4 5 243