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 |
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
What is conio h in c?
main difference between c and c++ language
What is a void pointer? When is a void pointer used?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
swap two integer variables without using a third temporary variable?
what are the interview question's in the language c
write a program to convert a expression in polish notation (postfix) to inline (normal)
write a programming in c language, 1 3 5 7 9 11
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Explain #pragma in C.
Explain which function in c can be used to append a string to another string?