12345678910



Question 1: What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
char c=´0´;
printf("%d %d",sizeof(c),sizeof(´0´));
return 0;
}

1. 1 1
2. 2 2
3. 1 2
4. 2 1