Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;

assign the value in *a,*b,char array[12]

Answer Posted / ricky dobriyal

/* hello i am ricky dobriyal */

struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
n->a=10;
n->b='5';
m.array="ricky dobriyal";

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between ++u and u++?

1125


What are the different types of control structures in programming?

1118


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

1152


Explain how can I right-justify a string?

1038


What is a pointer value and address in c?

1115


Is null always equal to 0(zero)?

1027


Explain what is wrong with this program statement? Void = 10;

1253


Where local variables are stored in c?

991


What is string constants?

1140


Is it cc or c in a letter?

1014


What is putchar() function?

1142


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

1118


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1854


What is the use of function overloading in C?

1156


What is the size of array float a(10)?

1136