what is the output of the program in Turbo C (in DOS 16-bit OS)? answer is 2,4,4. but i didnt understand this... anyone plz e | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

what is the output of the program in Turbo C (in DOS 16-bit OS)? answer is 2,4,4. but i didnt understand this... anyone plz e

// anyone plz expain this prgram hpw the answer will be 2,4,4 #include<stdio.h> int main() { char *s1; char far *s2; char huge *s3; printf("%d, %d, %d\n", sizeof(s1), sizeof(s2), sizeof(s3)); return 0; }

17th Jun 2021, 6:46 PM
Balaji Shanmugavel
Balaji Shanmugavel - avatar
1 Resposta
+ 3
your program exists in a memory segment, so the pointer is the offset from the base address of the segment. a far pointer stores both the base address of the segment and the offset, being able to address memory arias outside the program segment. far and huge are synonyms https://en.m.wikipedia.org/wiki/X86_memory_segmentation
17th Jun 2021, 10:24 PM
Ciro Pellegrino
Ciro Pellegrino - avatar