Tagged Questions

26
votes
9answers
12k 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
22
votes
8answers
8k 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 happen in memory allocation during compile time and run time.
13
votes
2answers
4k views

Can't get rid of “this decimal constant is unsigned only in ISO C90” warning

I'm using the FNV hash as a hashing algorithm on my Hash Table implementation but I'm getting the warning in the question title on this line: unsigned hash = 2166136261; I don't understand why this ...
12
votes
5answers
256 views

Making sense of where “const” goes in a declaration

I am having trouble finding an intuitive pattern for the way const is used in declarations in the C and C++ languages. Here are some examples: const int a; //Const integer int const a; //Const ...
11
votes
5answers
460 views

How to force GCC to put constants in memory instead of generating them?

I have a lot of constant arrays defined in several functions. Something like the following: const float values[4] = {-4312.435f, -432.44333f, 4.798, 7898.89}; After inspecting gcc assembler ...
10
votes
10answers
723 views

Why use constants in programming? [closed]

I've just been going back over a bit of C studying using Ivor Horton's Beginning C book. I got to the bit about declaring constants which seems to get mixed up with variables in the same sentence. ...
8
votes
5answers
577 views

C: enum VS #define for mathematical constants?

I'm wondering what would be the best way to store math constants that are used throughout an entire program? #define PI 3.14159265 #define SPEEDOFLIGHT 2.99792458e8 or enum constants { PI = ...
8
votes
5answers
372 views

Is there a a C-like way to get item number from enum in java?

Perhap this is a simple basic question Having an enum public enum TK{ ID,GROUP,DATA,FAIL; } Can I get the order number for example ID=0, GROUP=2, DATA=3, FAIL=4 ? This is a way to ...
8
votes
6answers
1k views

C/C++: Optimization of pointers to string constants

Have a look at this code: #include <iostream> using namespace std; int main() { const char* str0 = "Watchmen"; const char* str1 = "Watchmen"; char* str2 = "Watchmen"; char* ...
7
votes
3answers
227 views

Constant combining in optimizing compilers

I have a header file containing a lot of small inline functions. Most of them happen to have constant data. Since these functions are performance critical, the way they handle constants becomes ...
7
votes
2answers
308 views

Details of what constitutes a constant expression in C?

C defines at least 3 levels of "constant expression": constant expression (unqualified) arithmetic constant expression integer constant expression 6.6 paragraph 3 reads: Constant expressions ...
7
votes
5answers
266 views

Sharing constants across languages

I have a long list of constants that I need access to in several projects which are in different languages(Verilog, C, C++ and C#). Rather than repeating them in each language, is there a good way to ...
7
votes
10answers
9k views

Where are constant variables stored in C?

I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
6
votes
4answers
435 views

c/c++ optimize for constant variable in calling functions

C/C++ compilers optimize single layer functions with constant parameters (known at compile time) only when using -Os, -O1 and -O2. They do not optimize all the layers. Only -O3 can do that. gcc is ...
6
votes
1answer
286 views

hexadecimal floating constant in C

0x0.3p10 represents what value? And what's the meaning of the p in the statement above?
6
votes
6answers
305 views

Are string literals const?

Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99): char *foo = "bar"; while they (of course) do ...
6
votes
13answers
562 views

Memorable 32-bit value as a constant

I am looking for a memorable 32-bit value to be used as a constant. If possible, it should be somewhat funny too. So far, I have come up with these two: 0xcafebabe 0xdeaddad Can you please ...
5
votes
2answers
509 views

Unsigned hexadecimal constant in C?

Does C treat hexadecimal constants (e.g. 0x23FE) and signed or unsigned int? Amr
4
votes
1answer
109 views

iPhone Mach-O binaries, string storage, __TEXT/__DATA

I am attempting to read constant (or initilization) strings from an iPhone Mach-O binary file. I understand that the 3 relevant segment.sections are _TEXT._cstring _TEXT._ustring and _DATA._cfstring. ...
4
votes
4answers
156 views

why does accessing an element in an array take constant time?

Lets say I have an array as: int a[]={4,5,7,10,2,3,6} when I access an element, such as a[3], what does it actually happen behind the scene? Why does many algorithm books (such as the Cormen ...
4
votes
3answers
193 views

Constants by another name

First off, I've seen this question and understand why the following code doesn't work. That is not my question. I have a constant, which is declared like; //Constants.h extern NSString * const ...
3
votes
2answers
50 views

Constant memory usage in CUDA code

I can not figure it out myself, what is the best way to ensure the memory used in my kernel is constant. There is a similar question at http://stackoverflow...r-pleasant-way. I am working with GTX580 ...
3
votes
1answer
152 views

What does the compiler at casting integer constants?

Using the following macro: #define MIN_SWORD (signed int) 0x8000 In e.g. the following expression: signed long s32; if (s32 < (signed long)MIN_SWORD)... is expected to do the following check: ...
3
votes
3answers
923 views

Difference and definition of literal and symbolic constants in C?

I am having trouble getting to grips with the definition and uses of symbolic and literal constants and I was wondering if you anyone could explain them and highlight their differences. Thanks!
3
votes
5answers
2k views

Initializing a Global Struct in C

What is the best way to accomplish the following in C? #include <stdio.h> struct A { int x; }; struct A createA(int x) { struct A a; a.x = x; return a; } struct A a = ...
3
votes
4answers
272 views

How to invoke C compiler under gcc

According to my memory the following piece of code should compile fine on C++ but not in C. Only problem is how to test it? It compiled fine with g++ and also with gcc. I'm assuming that g++ is C++ ...
3
votes
4answers
476 views

Is there a way to use const variables in the definitions of other constants?

I would like to use some previously defined constants in the definition of a new constant, but my C compiler doesn't like it: const int a = 1; const int b = 2; const int c = a; // error: ...
2
votes
2answers
224 views

How to initialize constant member C array in an Objective-C class?

how can I create a constant C array member in an Objective-C class? The lifecycle should be limited to the classes lifecycle and I don't want to use malloc. At the moment I'm doing this: @interface ...
2
votes
2answers
202 views

Question about C datatype and constant

Greetings! I was experimenting with C language till I encountered something very strange. I was not able to explain myself the result shown below. The Code: #include <stdio.h> int main(void) ...
2
votes
4answers
3k views

Objective C defining UIColor constants

I have a iPhone application with a few custom-defined colors for my theme. Since these colors will be fixed for my UI, I would like to define the colors in a class to be included (Constants.h and ...
2
votes
3answers
2k views

What is the suffix used for long long constants

If i want to use something like below in a C code: if(num < 0x100000000LL) I want the comparison to happen on a long long constant, but suffix LL doesn't work in MSVC6.0 , but it works in MS ...
1
vote
1answer
29 views

How do I avoid getting “initializer element is not constant” when calling gtk_accelerator_name in a static array?

I changed this: static GtkActionEntry menu_items[] = { { "OpenFile", GTK_STOCK_OPEN, NULL, "<control>O", NULL, G_CALLBACK(file_open) }, ... }, ... to this: static GtkActionEntry ...
1
vote
6answers
113 views

Is it possible to set const using a user-input?

When programming in C, is it possible to set a const with a value of a user-input? If so, how?
1
vote
2answers
48 views

Hexadecimal Floating-Point,roundIng

I try the following example: printf("%9.1a",4488.09); //Only one digits has to be printed after digital point The binary representation of 4488.09 == 1 0001 1000 ...
1
vote
5answers
220 views

What do 0LL or 0x0UL mean?

I am reading the Google Go tutorial and saw this in the constants section: There are no constants like 0LL or 0x0UL I tried to do a Google search but all that comes up are instances where people ...
1
vote
1answer
262 views

Variably modified, but err, how?

Ok, I understand this is probably ugly as heck, but I cannot understand why I cannot use TILES_X, TILES_Y or TILES_TOTAL as global array lengths, GCC crying about it being "Variably modified at file ...
1
vote
3answers
73 views

C constants throwing compile-time errors

Several people have commented on my C code here, saying that I should use constants as loop counters, rather than hard-writing them. I agree with them, since that is my practice when writing Java ...
1
vote
6answers
140 views

c++ How could I properly predefinied array of char*?

I am doing it that way: int argc = 9; char* argv[argc]; argv[0] = "c:/prog.exe"; but I get notice, that it is deprecated. What is better way?
1
vote
3answers
476 views

Constants in C/C++

How many different ways are there to define constants in C or C++? I am already aware of using the const keyword and the #define directive. I heard somewhere that there are two more ways to define ...
1
vote
4answers
877 views

What is the difference between macro constants and constant variables in C? [closed]

Possible Duplicate: “static const” vs “#define” in c I started to learn C in these days. And couldn't understand clearly differences between macros and constant ...
1
vote
6answers
209 views

Variable Multiplication in C?

//Hydroelectric Dam Helper #include <stdio.h> #define GRAV 9.80 #define EFINC 0.9 #define EFINC2 90 int main() { //Defines all the variables to be used double height, work, mass; ...
1
vote
4answers
237 views

How to define a constant conditionally

I want to define some constants in my C file. Its assembly code like this: Const1 = 0 Const2 = 0 IF Condition1_SUPPORT Const1 = Const1 or (1 shl 6) Const2 = Const2 or (1 shl 3) ENDIF ...
1
vote
3answers
234 views

Constant string arrays

Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when ...
1
vote
3answers
453 views

Error on defining an array even though its set via a Constant

I know this is really basic, but its got me stumped... In Objective-C I'm trying to write: const int BUF_SIZE = 3; static char buffer[BUF_SIZE+1]; But I get a storage size of buffer isn't ...
0
votes
0answers
95 views

Constants in C pros/cons [closed]

Possible Duplicate: C++ - enum vs. const vs. #define In the Linux kernel, one can see this: enum { CONST_X = 1, CONST_Y = 2, }; Is that a better practice than #define CONST_X 1?
0
votes
1answer
72 views

C: Create a global variable with the return value from a function

I'm programming a simple library to return my db user and pass. This all works fine. However, I've already a finished C app, that I want to adjust without putting the new values (user and pass) into ...
0
votes
3answers
57 views

Local synonymous variable to non exact type

I'm a little bit new to C so I'm not familiar with how I would approach a solution to this issue. As you read on, you will notice its not critical that I find a solution, but it sure would be nice for ...
0
votes
4answers
137 views

Why can't C constant be stored in short type

As the title implies, I don't understand why it is like that. The Code: #include <stdio.h> #define try 32 int main(void) { printf("%ld\n" , sizeof try); return 0; } The ...
0
votes
3answers
126 views

shared c constants in a header

I want to share certain C string constants across multiple c files. The constants span multiple lines for readability: const char *QUERY = "SELECT a,b,c " "FROM table..."; Doing ...
0
votes
0answers
164 views

Is there any trick to write numeric constants in binary representation in source code? [closed]

Possible Duplicate: Can I use a binary literal in C or C++? In C or C++ we can do: const int i = 0x1B; // hexadecimal const int i = 27; // decimal const int i = 033; // octal But ...

1 2