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

What is the difference between #include

and #include “header file”?

558


What is the difference between text and binary modes?

653


What is indirection in c?

634


Where we use clrscr in c?

718


i got 75% in all semester am i eligible for your company

1746






What are the string functions? List some string functions available in c.

614


Why is c so powerful?

694


How to declare a variable?

578


Is c programming hard?

585


Explain what is gets() function?

641


Suggesting that there can be 62 seconds in a minute?

606


Which header file is essential for using strcmp function?

948


write a program to find out prime number using sieve case?

1647


What is #include stdlib h?

625


What are the preprocessor categories?

646