what is stack , heap ,code segment,and data segment


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why we use conio h in c?

0 Answers  


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

0 Answers  


How do I swap bytes?

0 Answers  


if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?

4 Answers   Amazon, Apple, Bata, Google, NASA,


What is main function in c?

0 Answers  


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

0 Answers  


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

0 Answers  


Differentiate between a for loop and a while loop? What are it uses?

0 Answers   TISL,


Why c is a procedural language?

0 Answers  


What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }

8 Answers   ADITI, Adobe,


Which is an example of a structural homology?

0 Answers  


Why malloc is faster than calloc?

0 Answers  


Categories