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 / madhavendra pratap shahi

c language is procedural programming language .and
c++ is a object orient programming language . c
support top to bottom approch.but c++ support bottom
up approch. which function are used in c we can
also use these function in c++. in c++ varible
are called data member and function are called are
called member function.c++ uses concept of class.
but c not support class concet.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you use inheritance in unity?

1127


What is overriding in oops?

1155


What are the three parts of a simple empty class?

2095


What is oops concept with example?

1082


How is class defined?

1208


When not to use object oriented programming?

1178


What are the 5 oop principles?

1165


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

2593


What is the advantage of oop over procedural language?

1128


2. Give the different notations for the class.\

2223


What is the point of oop?

1260


What is the main feature of oop?

1202


What does and I oop and sksksk mean?

1231


Get me an image implementation program.

2044


#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

2685