#include<stdio.h>
int main()
{
printf("%d", -3 < sizeof(int));
return 0;
}
I hear the return type of sizeof
is size_t and not int.
Can anyone tell me about this size_t or any other explanation?
#include<stdio.h>
int main()
{
printf("%d", -3 < sizeof(int));
return 0;
}
I hear the return type of sizeof
is size_t and not int.
Can anyone tell me about this size_t or any other explanation?