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...

difference between function & structure

Answer Posted / nixiemae

Structure: The way in which the components, plan, designs
are interrelated that is structure.

Function: The Operation of each individual component as part
of the structure.

Is This Answer Correct ?    18 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program of prime number using recursion.

1082


What is the return type of sizeof?

1063


What is c language & why it is used?

1105


Can a pointer be static?

1071


Using which language Test cases are added in .ptu file of RTRT unit testing???

4274


Write a program which returns the first non repetitive character in the string?

1120


What does typedef struct mean?

1105


Explain the difference between #include "..." And #include <...> In c?

1024


How to write c functions that modify head pointer of a linked list?

983


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

3184


Write a code to remove duplicates in a string.

1024


What is #ifdef ? What is its application?

1104


What is atoi and atof in c?

1084


using for loop sum 2 number of any 4 digit number in c language

2332


Can a pointer be volatile in c?

981