Is a*=b;
the same as a*a=b;
, and if not, what is its equal?
I'm little confused because I keep getting wrong answer on this test:
#include<stdio.h>
main ()
{
int i, j, a=1, b=3;
for(j=1; j<3; j++)
a*=b;
b++;
printf("a=%d", a);
}