Answer Posted / poonam
RAM is Random Access Memory. It is a form of computer data
storage that allows data to be stored in any order(ie
random).It is the temporary volatile memory of the computer
system which when the computer is switched off the memory
inside the RAM is lost.
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What does the file stdio.h contain?
What is %s and %d in c?
How can you determine the size of an allocated portion of memory?
What is sorting in c plus plus?
What is meant by operator precedence?
find the sum of two matrices and WAP for it.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is d'n in c?
What is the benefit of using an enum rather than a #define constant?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What are the types of variables in c?
What Is The Difference Between Null And Void Pointer?
What is oops 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); }
Should a function contain a return statement if it does not return a value?