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

Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  


What are valid operations on pointers?

0 Answers  


Why n++ execute faster than n+1 ?

2 Answers  


Explain what is a 'locale'?

0 Answers  


simple program for virtual function?

1 Answers  


Do pointers need to be initialized?

0 Answers  


disadvantages of realloc ?

1 Answers   HCL,


application of static variables in real time

1 Answers   Bosch,


What does c mean in standard form?

0 Answers  


write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }

1 Answers  


Explain how do you determine a file’s attributes?

0 Answers  


What are the standard predefined macros?

0 Answers  


Categories