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
What are the 5 data types?
How can you call a function, given its name as a string?
What is a function in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain what is wrong with this program statement?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What are loops in c?
Write program to remove duplicate in an array?
What is c programing language?
What is the difference between single charater constant and string constant?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How do I create a directory? How do I remove a directory (and its contents)?
What are types of functions?
How do you generate random numbers in C?
Why isnt any of this standardized in c?