Qmark: 1
Total Marks: 50
Vol: 8
Font: Microsoft Sans Serif
Size: 10
Time Left:46:58
Multiple Choices
(Choose 1 answer)
What is the correct statement about the following code?
int main()
{
float *p;
*p=30;
return(0);
}
A. Error at compiling time
B. Run successful
C. Error at run time, because pointer variable p has not be allocated memory yet.