What are the types of abstraction?
No Answer is Posted For this Question
Be the First to Post Answer
What is multilevel inheritance?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
What is the purpose of enum?
What is data binding in oops?
what is difference between c++ language and java language
What is the difference between inheritance and polymorphism?
What is class and example?
What is the oops and benefits of oops programming?
What is class in oop with example?
what is the main difference between sizeof() operator in c and c++
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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
3. Differentiate verification and validation.