Fill up the missing statement of the following :-
StructNode * p ;
P = (structNode *) malloc (size of (structNode));
< Missing statement >
print(ā % dā, p ā data) ;
The output is 100.1
P = 100
2
* P = 100
3
* P. data = 100
4
(*P). data = 100
Fill up the missing statement of the following :-
StructNode * p ;
P = (structNode *) malloc (size of (structNode));
< Missing statement >
print(ā % dā, p ā data) ;
The output is 100.