C Programs and their outputs
Question 1:
#include<stdio.h>
int main() {
printf("%d", sizeof('a'));
return 0;
}
Explanation: The sizeof operator in C returns the size in bytes of a variable or a type. In this case, 'a' is a character constant, and its size is determined ...
anusree-anilkumar.hashnode.dev19 min read