How can I change the size of the dynamically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
List out few of the applications that make use of Multilinked Structures?
what are enumerations in C
What is queue in c?
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
Is sizeof a keyword in c?
Write a program to find given number is even or odd without using any control statement.
errors in computer programmes are called
What is the scope of global variable in c?
Write a program to show the workingof auto variable.
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What are examples of structures?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }