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


Please Help Members By Posting Answers For Below Questions

What are the benefits of organizational structure?

568


What is volatile variable in c with example?

581


What are global variables and explain how do you declare them?

569


Why static variable is used in c?

549


Why is sprintf unsafe?

613






Write the control statements in C language

645


What is external variable in c?

607


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3120


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3839


What is malloc() function?

634


Explain how can I convert a string to a number?

643


Why & is used in scanf in c?

621


What are the standard predefined macros?

630


Write a program to reverse a given number in c?

596


What are the properties of union in c?

585