Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is a macro? And how is a macro same as a template?

Answer Posted / poonam

Would you please elaborate your answer... This question was
posted by me. I want to know the answer in c++ point of veiw.

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you define a class in oop?

1138


What are the 3 pillars of oop?

1205


Explain the concepts involved in Object Oriented programming.

1259


What is destructor give example?

1068


Can bst contain duplicates?

1208


#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

2637


What is and I oop mean?

1219


What is property in oops?

1075


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6692


IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?

2081


What is the significance of classes in oop?

1169


write a program to find 2 power of a 5digit number with out using big int and exponent ?

2400


What is class in oop with example?

1115


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2632


What are the benefits of interface?

1071