#include<stdio. h>
void main ()
{
int x=4,y=78;
if(x=8 && y>65)
printf("x=%d");
else
printf("Bywe");
getch();
}
here i am always geting the value of x is one........... its never change
void main ()
{
int x=4,y=78;
if(x=8 && y>65)
printf("x=%d");
else
printf("Bywe");
getch();
}
here i am always geting the value of x is one........... its never change
Comment