Sail E0 Webinar
Question

Size of short integer and long integer can be verified using the sizeof() operator.

True


Options:
A .  True
B .  False
Answer: Option A


True, we can find the size of short integer and long integer using the sizeof()
operator.
Example:


#include<stdio.h>
int main()
{
short int i = 10;
long int j = 10;
printf("short int is %d bytes., nlog int is %d bytes.",
sizeof (i), sizeof(j));
return 0;
}
Output:
short int is 2 bytes.
long int is 4 bytes.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers