#include
int main()
{
int k=3;
printf("BYE...%d,%d,%d, %d",k,k>2,k=2,k==3);
return 0;
}
Output: 2, 0, 2, 1
Explanation: printf evaluate expression from right to left….
2. what will be the output of the following program?
main()
{
int j,num;
j=(num < 0 ? 0 : num * num);
printf("%d\n",j);
}
output: Unpredictable:: num not initialized...