• 2022-06-04
    Analyze the running process of the following program and write the running results.#includeint main(){ int a=6; printf("%d\n",a%=a+=a-=a*a); return 0;}______