What will be the output of the program? 
int main()
{
 int a=16,n=0;
 while(n<=~(~a))
 {
  n++;
 }
 a=n;
 printf("%d",~a);
 return 0;
}


Posted on by