How can I change the size of the dynamically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
When should we use pointers in a c program?
why we need function pointers?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
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 linked lists in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Is there any book to know about Basics of C Language?
cavium networks written test pattern ..
what do you mean by enumeration constant?
What is uint8 in c?
How to print "Hi World" without using semi colon?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?