How to overload postfix operator in c++

Answer Posted / r.ramakrishna

Defining the variables in the class of a method after the
method will executed.

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is abstraction oop?

851


Why is it so that we can have virtual constructors but we cannot have virtual destructors?

4387


Why oops is important?

814


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3865


What is purpose of inheritance?

886


What is for loop and its syntax?

831


#include #include #include #include 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

2401


What is the use of oops?

827


What is debug class?what is trace class? What differences are between them? With examples.

1888


What is encapsulation with real life example?

808


i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1658


What are functions in oop?

813


How to hide the base class functionality in Inheritance?

890


What is abstraction in oop with example?

888


Can static class have constructor?

816