6
votes
8answers
296 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 …
0
votes
1answer
28 views
Constant Pointer / structs
In my programming class, we have
struct Time {
int hours, min, sec;
}
We are to create a method to compute the difference between two times:
Time *timeDiff(const Time *t1, …
6
votes
7answers
860 views
C++ binary constant/literal
I'm using a well known template to allow binary constants
template< unsigned long long N >
struct binary
{
enum { value = (N % 10) + 2 * binary< N / 10 > :: value } …
1
vote
4answers
177 views
How is π calculated within sas?
just curious! but I spotted that the value of π held by SAS is in fact incorrect.
for instance:
data _null_;
x= constant('pi') * 1000000000000000000000000000;
put x= 32.;
run;
…
2
votes
8answers
410 views
Best way to use a property to reference a Key-Value pair in a dictionary
This is a fairly trivial matter, but I'm curious to hear people's opinions on it.
If I have a Dictionary which I'm access through properties, which of these formats would you pref …
9
votes
8answers
2k views
Is it better in C++ to pass by value or pass by constant reference?
Is it better in C++ to pass by value or pass by constant reference?
I am wondering which is better practice. I realize that pass by constant reference should provide for better p …
1
vote
5answers
139 views
Raising an exception on updating a ‘constant’ attribute in python
As python does not have concept of constants, would it be possible to raise an exception if an 'constant' attribute is updated? How?
class MyClass():
CLASS_CONSTANT = 'This …
-1
votes
1answer
63 views
Define some costants in a class [closed]
define some costants in a class and then use another class to print them both the classes should be in diferent package in java
2
votes
6answers
194 views
PHP Constants Containing Arrays?
This failed:
define('DEFAULT_ROLES', array('guy', 'development team'));
Apparently, constants can't hold arrays. What is the best way to get around this?
define('DEFAULT_ROLES …
1
vote
3answers
2k views
Dynamic Allocation of Constant memory in CUDA
Hello,
I'm trying to take advantage of the constant memory, but I'm having a hard time figuring out how to nest arrays. What I have is an array of data that has counts for intern …
1
vote
2answers
184 views
C# binary constants representation
I am really stumped on this one. In C# there is a hexadecimal constants representation format as below :
int a = 0xAF2323F5;
is there a binary constants representation format?
1
vote
4answers
224 views
How can I create a nested hash as a constant in Perl?
I want to do, in Perl, the equivalent of the following Ruby code:
class Foo
MY_CONST = {
'foo' => 'bar',
'baz' => {
'innerbar' => 'bleh'
},
}
def …
6
votes
6answers
215 views
TDD : Any pattern for constant testing ?
Constants are beautiful people - they can hold in a unique place a value that is used everywhere in your code. Changing that value requires only one simple modification.
Life is c …
0
votes
2answers
326 views
Ruby module with a static method call from includer class
I need to define the constant in the module that use the method from the class that includes this module:
module B
def self.included(base)
class << base
CONST = sel …
0
votes
4answers
92 views
PHP parse error when referencing a string
I have the following constant defined in my PHP script:
define("MODULE_PATH", "D:\\modules\\");
Whenever I try and assign the constant to a variable or as a function argument, …
