What is Dynamic Initialization.
Answers were Sorted based on User's Feedback
Answer / thanigaivel.s
Intialize the Variable or Array memory at the run time of
Code .
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / saranya
initialize during the runtime of the program execution.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rama krishna sidhartha
Initializing the values of variables or array variables at
the time of execution (or)runtime.
| Is This Answer Correct ? | 3 Yes | 3 No |
What is wrong in this statement?
Differentiate between calloc and malloc.
why do some people write if(0 == x) instead of if(x == 0)?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
What does malloc () calloc () realloc () free () do?
What is a dynamic array in c?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Are there any problems with performing mathematical operations on different variable types?
How is null defined in c?
What functions are used in dynamic memory allocation in c?
what is the full form of c language
What are runtime error?