What is Dynamic Initialization.

Answers were Sorted based on User's Feedback



What is Dynamic Initialization...

Answer / thanigaivel.s

Intialize the Variable or Array memory at the run time of
Code .

Is This Answer Correct ?    5 Yes 1 No

What is Dynamic Initialization...

Answer / saranya

initialize during the runtime of the program execution.

Is This Answer Correct ?    3 Yes 0 No

What is Dynamic Initialization...

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

Post New Answer

More C Interview Questions

how to execute with out main in cprogram

15 Answers   Infosys,


how can make variable not in registers

1 Answers   TCS,


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


What are the features of c languages?

0 Answers  


Where are c variables stored in memory?

0 Answers  






What are volatile variables in c?

0 Answers  


Output for following program using for loop only * * * * * * * * * * * * * * *

3 Answers  


What is signed and unsigned?

0 Answers  


how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"

4 Answers   Wipro,


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


What is stack in c?

0 Answers  


Categories