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 difference between the C & C++?

Answer Posted / rajeswari.v

C C++

1.The execution of 'c The execution of c++ program is
program is top to bottom bottom to top approach.
approach.

2.Implementation of complex It is easy.
program is difficult.

3.Middle level language. It is hybrid language.

4.Every cycle changes not Possible in c++
possible in 'c'.

5.Less security for data More security for ddata

Is This Answer Correct ?    16 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why interface is used?

955


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

2038


What is the important feature of inheritance?

1065


Why do we use encapsulation in oops?

970


what's the basic's in dot net

2118


What is ambiguity in inheritance?

1048


What is object and example?

1112


What is destructor in oop?

984


What is the difference between abstraction and polymorphism?

1045


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

2074


What are the types of abstraction?

992


#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

2563


Can we override main method?

1120


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

4077


What is destructor oops?

1027