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 |
Is file a keyword in c?
What is a null pointer in c?
. Explain the differences between fork() and exec() in C
can v write main() { main(); } Is it true?
What is dynamic memory allocation?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
What is break statement?
what is a constant pointer in C
What is a double c?
What does the format %10.2 mean when included in a printf statement?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
What is string in c language?