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 |
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
How can I read data from data files with particular formats?
Explain why can’t constant values be used to define an array’s initial size?
what are the different storage classes in c?
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; } }
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is pointers in c with example?
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
What is extern variable in c with example?
#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?
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 ) ( )