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

what is the main difference between c and c++?

Answer Posted / anitha

There is no dynamic declaration in c whereas in c++ dynamic
declaration is possible.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are polymorphisms mutations?

1163


officer say me - i am offered to a smoking , then what can you say

2101


any one please tell me the purpose of operator overloading

2399


Can destructor be overloaded?

1034


Why is oop better than procedural?

1082


#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

2625


What is inheritance in oop?

1034


What is oops and why we use oops?

1045


What is encapsulation in ict?

1060


What is the difference between a constructor and a destructor?

1260


How to call a non virtual function in the derived class by using base class pointer

6562


What is a class and object?

1055


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2536


what's the basic's in dot net

2183


What is inheritance write a program to show use of inheritance?

1147