What is a superclass in oop?
No Answer is Posted For this Question
Be the First to Post Answer
How can i write a code in c# to take a number from the user and then find all the prime numbers till the number entered by the user.
why to use operator overloading
what is the difference between class to class type conversion and copy constructor ?
why destructor is not over loaded?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
how to find no of instances of an object in .NET?
what is data hiding.
write a program to find 2^n+1 ?
when my application exe is running nad i don't want to create another exe what should i do
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
write string class as your own class in java without using any built-in function
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,