36. WAP to understand function data parsing happens from right to left.

 #include<stdio.h>

void main()

{

        int k = 35;

        printf("%d %d %d\n",k==35,k=50,k>40);

}

Comments