Tagged Questions
10
votes
10answers
721 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
4answers
256 views
why a[n] is accepted in c during runtime?
why can we do this in c?
int n;
scanf("%d",&n);
int a[n];
I thought array is located memory during load time but seems like the above example works during runtime.
Do I misunderstand any thing? ...
4
votes
10answers
1k views
Defining const values in C
I have a C project where all code is organized in *.c/*.h file pairs, and I need to define a constant value in one file, which will be however also be used in other files. How should I declare and ...
3
votes
6answers
1k views
Where is pow function defined and implemented in C?
I read that the pow(double, double) function is defined in "math.h" but I can't find its declaration.
Does anybody know where this function declared? And where is it implemented in C?
Reference:
...
2
votes
1answer
123 views
Recursively declare function in C language
got a question from adream307, I have no idea, what about yours?
I want to declare a function like this:
(we named this type of function as F)
the return type of F is "void"
the ...
2
votes
3answers
117 views
Declare a Structure and a Function Reference that use Each Other
I need to declare a (typedef'd) structure and a (typedef'd) function reference in pain old C. This is my code:
typedef void (*monitor_calback)(monitor_data*, short int, short int, void*);
typedef ...
2
votes
4answers
471 views
How do I declare a pipe in a header file? (In C)
I have an assignment in which I need to declare a pipe in a header file. I really have no idea how to do this. It might be a really stupid question and I might be missing something obvious. If you ...
1
vote
2answers
83 views
how can i declare variables via macros?
first of all, I'm using MS's Visual Studio and using C language.
Recently I need to declare variables with just one same statement which likes a macro.
However as you know, I can declare just one ...
0
votes
3answers
89 views
Struct with an array as variable in c
i need to create a data type (struct in this case) with an array as a property. I have an initialiser function that initialises this data structure and gives the array a specified size. The problem ...
0
votes
2answers
116 views
C90: How do I globally initialize this struct in C without C99 extensions
I was wondering what the best way to initialize this struct is with C90, while still keeping it neat.
In my header file, call it test.h, I have the following struct defined:
struct s_test_cfg{
...