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 are the uses of structure?

Answer Posted / suneela

it is a collection data items of different data types using
a single name

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between calloc and malloc.

1320


What is bubble sort technique in c?

1039


Is r written in c?

1189


Why calloc is better than malloc?

1093


Differentiate between the = symbol and == symbol?

1365


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1104


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

1134


Explain pointers in c programming?

1161


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2858


Does free set pointer to null?

1065


What are the types of arrays in c?

1237


Do pointers take up memory?

1209


Explain how can you tell whether a program was compiled using c versus c++?

1147


What are valid signatures for the Main function?

1294


Explain how does flowchart help in writing a program?

1169