以下程序给出输出 4。我认为它会输出 8 sizeof(int) + sizeof(unsigned int)
#include<stdio.h>
#include<stdlib.h>
int main()
{
struct node
{
int a;
struct node * next;
};
struct node * p= (struct node *) malloc( sizeof( struct node));
printf("%d", sizeof( p));
}