What are structure members?



What are structure members?..

Answer / Trilok Kumar

Structure members are the variables that make up a structure. Each member has a name and a type.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

1 Answers  


How can I read data from data files with particular formats?

1 Answers  


Explain why can’t constant values be used to define an array’s initial size?

1 Answers  


what are the different storage classes in c?

1 Answers   TCS,


what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 Answers  


in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

2 Answers   NetApp,


What is pointers in c with example?

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 extern variable in c with example?

1 Answers  


#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

6 Answers   NDS,


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

3 Answers   Aricent, Manipal University,


which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )

1 Answers   C DAC,


Categories