42647.What can be said
of the following?
struct Node {
char *word;
int count;
struct Node left;
struct Node right;
}
struct Node {
char *word;
int count;
struct Node left;
struct Node right;
}
Incorrect definition
Structures cannot refer to other structure
Structures can refer to themselves. Hence the statement
is OK
Structures can refer to maximum of one other structure
42649.What
is the value assigned to the variable X if b is 7? X = b>8? b <<3: b>4? b>>1: b;
7
28
3
14
42650.Along with this you should also learn Time Management In Exam.
Which is the output produced by the following program
Which is the output produced by the following program
main()
{
int n=2;
printf(“%d %d\n”, ++n, n*n);
}
3, 6
3, 4
2,
4
cannot determine