#include<stdio.h>void main(){if(sizeof(int)>-1)printf("yes");elseprintf("No");}
What Is The Output Of this program?Also write the brief explanation about unsigned int datatype.#include <stdio.h>int main(){unsigned int a = 0xffff;unsigned int k = ~a;printf("%d %d\n", a, k);return 0;}