List some of the dynamic data structures in C?
No Answer is Posted For this Question
Be the First to Post Answer
What does d mean?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Can you please explain the difference between syntax vs logical error?
write a program in c to read array check element is present or not?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is this pointer in c plus plus?
write a program structure to find average of given number
If errno contains a nonzero number, is there an error?
WHAT IS INT?
What is meaning of tree
What is Dynamic Initialization.
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none