what is stack , heap ,code segment,and data segment
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
What are valid operations on pointers?
Why n++ execute faster than n+1 ?
Explain what is a 'locale'?
simple program for virtual function?
Do pointers need to be initialized?
disadvantages of realloc ?
application of static variables in real time
What does c mean in standard form?
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); }
Explain how do you determine a file’s attributes?
What are the standard predefined macros?