struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
assign the value in *a,*b,char array[12]
Answer Posted / aravind
struct node
{
int *a;
char *b;
char array[12];
};
struct node m,*n;
m->a*=5;
m->*b='c';
m.array[12]={"aravind");
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is variable in c example?
What is function definition in c?
What is keyword with example?
What is unsigned int in c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What are Macros? What are its advantages and disadvantages?
What is the use of pragma in embedded c?
How do shell structures work?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Can I initialize unions?
Do you have any idea how to compare array with pointer in c?
please give me some tips for the placement in the TCS.
What are the types of c language?
What is the auto keyword good for?
What is pass by reference in functions?