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 Full Form of C and Why We use C

Answer Posted / rehana

c is a basic language c programming means combined
programming its comes from BCPL(BASIC COMBINED PROGRAMMIN
LANGUAGE) its used to develope system and application
softwares.

Is This Answer Correct ?    16 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

1087


How can I direct output to the printer?

1321


How to find a missed value, if you want to store 100 values in a 99 sized array?

1413


What are terms in math?

1048


Is array name a pointer?

1030


What is the main difference between calloc () and malloc ()?

1155


Which function in C can be used to append a string to another string?

1222


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

1033


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

1250


What are the 5 data types?

1133


Can main () be called recursively?

1123


How can you restore a redirected standard stream?

1123


What is the best organizational structure?

1123


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1437


What is the deal on sprintf_s return value?

1136