Which type does string inherit from?
No Answer is Posted For this Question
Be the First to Post Answer
Can you name some types of inheritance?
what is virtual function?
What is object in oop?
How to create a comment page in C #??
What is encapsulation oop?
what's the basic's in dot net
How to overload new operator in 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
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What is function overloading?,describe it with the example.
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
What is deep and shalow copy?