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 / vrushali
Sorry .. i did not get your context....
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why c is a procedural language?
Which is the memory area not included in C program? give the reason
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
What is d scanf?
What oops means?
What is string length in c?
What is the purpose of ftell?
Explain main function in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
How do we print only part of a string in c?
Differentiate between static and dynamic modeling.
What are the types of type qualifiers in c?
How do you print an address?
What are enumerated types?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above