What will be the output of the following code?
What will be the output of following program
void main()
{
int x,y = 10;
x = y * NULL;
printf(“\n %d \n", x);
}
Consider a structure defined as follows:
What will be the output of the following code segment?