1.what is output of Code
snippet
#include<stdio.h>
int main()
{
int a,b;
printf("Enter a and b\n");
scanf("%d%d",&a,&b);
if(a&&b)
printf("value of a=%d and b=%d",a,b);
return 0;
}

Posted on by