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 structure?

Answers were Sorted based on User's Feedback



what is the structure?..

Answer / guest

structure is the diff collection of datatypes

Is This Answer Correct ?    14 Yes 0 No

what is the structure?..

Answer / som87

A Structure in C is a collection of different data types.
While in C++ a structure consist of Data types and functions.

Is This Answer Correct ?    10 Yes 3 No

what is the structure?..

Answer / suriya

Structures are the C equivalent of records. A structure type
is defined by
struct struct-name
{
type field-name;
type field-name; ...
}

Is This Answer Correct ?    6 Yes 1 No

what is the structure?..

Answer / a\sivasankar.a

structure is an derived data type and it is a collection of
different data types stored in s single stucture

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

How many types of operator or there in c?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A

1 Answers  


coding for Fibonacci.?

1 Answers  


What is an volatile variable?

15 Answers   HP,


logic for x=y^n

1 Answers   Delphi,


What is a dynamic array in c?

0 Answers  


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


What is the purpose of the statement: strcat (S2, S1)?

0 Answers  


What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none

9 Answers   IBM,


What is undefined behavior?

1 Answers  


What is #include stdio h and #include conio h?

0 Answers  


Categories