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 |
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is modeling?
What is dangling pointer in c?
What does a pointer variable always consist of?
Why is it that not all header files are declared in every C program?
What is the use of sizeof () in c?
What is the main differences between C and Embedded C?
code for find determinent of amatrix
how to write a prog in c to convert decimal number into binary by using recursen function,
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Under what circumstances does a name clash occur?