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 available in C language but not in C++?

Answer Posted / amit soni

c is a structured language but c++ is object orientd.

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the c in ctime mean?

1159


Why shouldn’t I start variable names with underscores?

1113


Differentiate between the expression “++a” and “a++”?

1309


What does char * * argv mean in c?

1117


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

3211


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2352


What is null in c?

1153


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

1045


Explain what is the most efficient way to store flag values?

1270


What are the types of macro formats?

1163


What are the uses of a pointer?

1196


How can I find the modification date of a file?

1337


Do pointers take up memory?

1207


Why use int main instead of void main?

1176


Explain output of printf("Hello World"-'A'+'B'); ?

1557