What is class and example?
No Answer is Posted For this Question
Be the First to Post Answer
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
What is DeadlyDiamondDeathProblem ?
can you give real time example for polymarphism
What is overriding vs overloading?
create a c++ program that will accepts 9 inputs using 3 by 3 array.
#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
Iam doing my project on instant messaging , if you any new ideas regarding this project ,please suggest it?
How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)
what is code for call by value and call by reference?
What is the difference between a mixin and inheritance?
How many types of access specifier in c# and vb.net?
what is static?