Answer Posted / glibwaresoftsolutions
The type of data contained in that variable determines how much memory has to be allocated or reserved.
If a variable is designated as "integer type," for instance, 32 bits of memory storage will be set aside specifically for that variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program for finding factorial of a number.
Explain built-in function?
What is a constant and types of constants in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Who invented bcpl language?
What is .obj file in c?
What are c header files?
Differentiate between a for loop and a while loop? What are it uses?
hi send me sample aptitude papers of cts?
What is null pointer constant?
Write program to remove duplicate in an array?
Is main an identifier in c?
How do we make a global variable accessible across files? Explain the extern keyword?
What is structure in c language?
Why should I use standard library functions instead of writing my own?