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 C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
how is the examination pattern?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
why i join syntel?
23 Answers ABC, Syntel, TCS,
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
What is the purpose of Scanf Print, getchar, putchar, function?
What is the difference between if else and switchstatement
program to find middle element of linklist?
In a switch statement, explain what will happen if a break statement is omitted?
Write a code on reverse string and its complexity.
what is level of tree if leaf node is at level 4.please explain.
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }