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...



C++ Interview Questions
Questions Answers Views Company eMail

Please explain class & object in c++?

1062

What are member functions used in c++?

1097

What is copy constructor? Can we make copy constructor private in c++?

1043

What is a storage class used in c++?

1042

Explain the difference between class and struct in c++?

1007

Define friend function.

996

What are the c++ access specifiers?

1 1367

How delete [] is different from delete?

969

What are the methods of exporting a function from a dll?

1168

What is the purpose of the "delete" operator?

1023

What does scope resolution operator do?

1072

What is the full form of stl in c++?

1153

Who was the creator of c++?

1010

What are the various oops concepts in c++?

988

What is the difference between function overloading and operator overloading?

1052


Un-Answered Questions { C++ }

What is expression parser in c++

2445


How do you establish an is-a relationship?

1096


What is the difference between while and do while loop?

1101


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

2509


There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?

954


What is constructor overloading in oop?

1093


How to input string in C++

831


What does and I oop mean in text?

1143


What do you mean by function pointer?

1060


What does obj stand for?

1104


Why can templates only be implemented in the header file?

1071


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

4839


Define Virtual function in C++.

1053


What is runtime errors c++?

1077


Execute the qsort () in c/sort() in c++ library or your own custom sort which will sort any type of data on user defined criteria.

935