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 c functions prevents rework and therefore saves the programers time as wel as length of the code ?

1097

Can union be self referenced?

1159

What is the use of function pointer?

1031

What is lvalue?

1173

What is a unnitialised pointer?

1089

What is endianness?

1101

What is the difference between *p++ and (*p)++ ?

1362

How static variables and local variablesare similar and dissimilar?

1043

What are the uses of typedef in a program?

1088

How to declare an array of pointers to integer?

1145

What do you mean by static variables?

1178

Define pointers?

1054

what do you mean by volatile variable?

1056

What is the difference between global variables and static varables?

1146

Where the memory to the static variables is allocated?

1061


Un-Answered Questions { C++ }

what are the different types of qualifier in java?

2276


What is a responder chain?

1054


What is c++ hash?

1106


If all is successful, what should main return a) 0 b) 1 c) void

1017


What do you by Function Overloading in C++?

1046


What polymorphism means?

1078


Can I create my own functions in c++?

1091


Explain how we implement exception handling in c++?

1061


Explain the differences between list x; & list x();.

1018


How can a C function be called in a C++ program?

752


#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

2627


What does std mean in c++?

1128


What is the difference between member functions and static member functions?

1150


Which operator cannot be overloaded c++?

1017


What is class in c++ with example?

1279