what is the application of oops?

Answer Posted / zelence

oops is the programming to solve several programme

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does and I oop and sksksk mean?

652


Where is pseudocode used?

565


What is the important feature of inheritance?

635


Can we have inheritance without polymorphism?

612


How do you explain polymorphism?

592






#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

2168


What is difference between pop and oop?

609


Can we create object of abstract class?

577


Plese get me a perfect C++ program for railway/airway reservation with all details.

3429


Write a program to reverse a string using recursive function?

1792


Write a c++ program to display pass and fail for three student using static member function

2816


What is class and object with example?

585


what is the 3 types of system development life cycle

2433


why reinterpret cast is considered dangerous?

1903


What is oops and its features?

587