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

What is an object in c++?

1 1280

What is time h in c++?

1151

What is ctime c++?

1138

What is time_t c++?

1151

Can abstract class have normal methods?

1067

Who invented turbo c++?

1084

What is c++ runtime?

1124

What is c++ redistributable?

1248

How do I use turbo c++?

998

What is runtime errors c++?

1134

What causes a runtime error c++?

1146

Can I uninstall microsoft c++ redistributable?

1133

What is the best ide for c++?

1109

Can we run c program in turbo c++?

1095

What are c++ redistributables?

1055


Un-Answered Questions { C++ }

Is c++ fully object oriented?

983


Why should a c++ programmer be interested in stl?

1110


Can we change the basic meaning of an operator in c++?

1128


Is it possible for a member function to use delete this?

1095


What do you mean by vtable and vptr in c++?

1053


What does flush do c++?

1078


#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

2564


declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator

2371


In C++ what is a vtable and how does it work?

1072


Explain class invariant.

1077


What is the prototype of printf function?

1200


What is flush programming?

1029


What are friend classes?

1081


What is difference between rand () and srand ()?

1106


What is the difference between an external iterator and an internal iterator?

1117