python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
C++ Union Array differs in 32/64 bits
My code:
union FIELD {
int n;
char c;
const char *s;
FIELD(){}
FIELD(int v){ n = v; }
FIELD(char v){ c = v; }
FIELD(const char* v){ s = v; }
};
struct SF {
const char*...
唐太宗
Votes: 0
Answers: 1
perl 5.26.3:how to set option for 32bit in Configure so that I will get perl compiled binary for 32 bit(i686-linux) for RHEL
I compiled perl 5.26.3 source code for RHEL from cpan link:
wget https://www.cpan.org/src/5.0/perl-5.26.3.tar.bz2
I compiled it with steps mentioned below:
./Configure -des -Dprefix=</path/to/...
Ami
Votes: 0
Answers: 0
Is it possible to do x64 bit software engineering in 32 bit based pc?
I want to be a software engineer. I have both 32 bit and 64 bit based pc. But i wondered, is it possible to make 64 bit softwares in 32 bit based pc? If not, then what can be alternative?
mapleGUARD
Votes: 0
Answers: 0
Binary to Decimal 32bit signed with PHP
I currently have a Decimal that is coming through as: 4294960896
This is then converted to Binary with this function:
decbin('4294960896')
Which equals: 11111111111111111110011100000000
I then need t...
Nick
Votes: 0
Answers: 2