if i run this program:
#include <stdio.h>
int main()
{
    int a=32,b=2,c,i;
    for(i=0;i<3;i++){
        printf("%d\n",c);
        c=a/b;
        a=c;
    }
    return 0;
}
the output is:
32765
16
8
In there, I dont define the value of C, Where from came this output 32765.? even again i run this code more time,it show different values like 32764,32767. Why this different output showing on?
 
     
    