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

How can I learn dev c++ programming?

1057

What is c++ good for?

1063

Is c++ used anymore?

1095

Is c++ vector dynamic?

1130

Is c++ a high level language?

1006

Can turbo c++ run c program?

1098

What do c++ programmers do?

1060

How do you initialize a string in c++?

1003

Is there a c++ certification?

1062

Is c++ the hardest programming language?

1133

Are strings mutable in c++?

1137

Is c++ a float?

1066

What are c++ files?

1143

How can I improve my c++ skills?

1136

Do you need a main function in c++?

1123


Un-Answered Questions { C++ }

What is the difference between a pointer and a link in c ++?

1057


Why c++ is called oop?

1124


Which is not an object oriented programming language?

997


What is the meaning of c++?

1029


What is the need of a destructor? Explain with the help of an example.

1029


In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....

2422


Should the member functions which are made public in the base class be hidden?

1034


What is the difference between C and CPP?

1161


Define a pdb file.

1073


#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

2554


What is atoi?

973


Describe private, protected and public?

1081


What does int * mean in c++?

1231


What are the advantages and disadvantages of B-star trees over Binary trees?

1057


Does std endl flush?

1039