what is pointers

Answer Posted / p.madhupriya

pointer is a variable that points to address of another variable

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the 3 types of system development life cycle

2431


What is polymorphism used for?

572


Why do we need oop?

671


Why multiple inheritance is not allowed?

581


What is oops and why we use oops?

571






What is encapsulation example?

547


What is coupling in oops?

595


What is polymorphism and why is it important?

560


write a program to find 2 power of a 5digit number with out using big int and exponent ?

1893


How is class defined?

586


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2166


How do you define a class in oop?

628


What are the types of abstraction?

555


What is the diamond problem in inheritance?

577


What is the difference between a constructor and a destructor?

613