to find out the minimum of two integer number of two different
classes using friend function
No Answer is Posted For this Question
Be the First to Post Answer
What is R T T I ?
What is class encapsulation?
#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
can main method be overloaded...??? How..????
Can we call a base class method without creating instance?
What is polymorphism used for?
difference between structure and union.
Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??
What is the oops and benefits of oops programming?
How to create a comment page in C #??
Why static functions always uses static variables?
What do you mean by public, private, protected and friendly?