python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How are segment selectors related to the address?
Let's say I run the following C code and get 0x7ffd385c9588:
#include <stdio.h>
int main() {
int test = 5;
printf("%p", &test);
return 0;
}
I've heard that the logica...
VortixDev
Votes: 0
Answers: 0
Why does 8086 segment addressing not overflow?
I know that the 8086 addressing mode is a left shift of the segment register by four bits then add an offset. But will the information of significant bit not be lost after shifting the 16-bit register...

XM Zg
Votes: 0
Answers: 1
which part of code is creating Segmentation Fault in hackerrank?
I am trying to solve this problem in hackerrank.
https://www.hackerrank.com/challenges/circular-array-rotation/problem
Every other test is fine but one test is creating Segmentation Fault. This is th...

Raihan_Alam
Votes: 0
Answers: 1