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

Define macro.

1092

What things would you remember while making an interface?

1006

Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

1329

Explain the difference between c++ and java.

1116

Explain friend class?

1132

Explain stack unwinding.

1077

What is stack unwinding?

1146

How to implement is-a and has-a class relationships?

1033

Explain the auto storage classes in c++.

1103

What are stacks?

1066

What are the implicit member functions of class?

1091

You run a shell on unix system. How would you tell which shell are you running?

1173

Does improper inheritance have a potential to wreck a project?

1156

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

1018

Name the implicit member functions of a class.

1085


Un-Answered Questions { C++ }

If I is an integer variable, which is faster ++i or i++?

1071


Why is c++ not purely object oriented?

1013


#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


How do you clear a map in c++?

1127


What should main() return in c and c++?

1026


What data encapsulation is in c++?

1157


What is runtime errors c++?

1127


What does it mean to declare a function or variable as static?

1011


What is auto used for in c++?

1051


Is c++ built on c?

1036


What are the types of container classes?

1164


Write a program to sort the number with different sorts in one program ??

2374


What causes a runtime error c++?

1127


What is code reusability in c++?

1246


write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)

2390