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 / v.santhoshini

*c does not supports function overloading.c++does supports
function overloading.
*Now c,name space is not available.c++,namespace is
available.
*c does not uses reference variable.c++ uses reference
variables.
*c is more time complexity.c++ is less time complexity.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

2374


what is different between oops and c++

2542


can we make game by using c

4137


Why is oop useful?

1107


Can a destructor be called directly?

1076


Can we create object of interface?

1133


What does and I oop and sksksk mean?

1162


which feature are not hold visual basic of oop?

2193


How long to learn object oriented programming?

1091


#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 abstraction example?

1108


what type of question are asked in thoughtworks pair programming round ?

2215


What is methods in oop?

979


What is interface? When and where is it used?

2166


Can enum be null?

1019