let's take a code
struct FAQ
{
int a;
char b;
float c;
double d;
int a[10];
}*temp;
now explain me how the memory will be allocated for the
structure FAQ and what address will be in the structure
pointer (temp)....................
Answer Posted / sumanshu
55 BYTES OF MEMORY NEEDED.
ADDRESSS-IS BY DEFAULT
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is anagram in c?
Where is volatile variable stored?
Do you know what are bitwise shift operators in c programming?
Not all reserved words are written in lowercase. TRUE or FALSE?
Write a program to find factorial of a number using recursive function.
What is the difference between array and structure in c?
What functions are in conio h?
Is there any data type in c with variable size?
What are the advantages of using Unions?
explain what are actual arguments?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Why do we use namespace feature?
What is character constants?
what is the function of pragma directive in c?