Home > Back-end >  Why not output wow? It's strange
Why not output wow? It's strange

Time:04-28

CodePudding user response:

Variable, pointer variable, pointer, address, for reference:
 # include 

Int main ()
{
Int * A * B * C, A, B, C, t;
The scanf (" % d % d % d ", & amp; A, & amp; B, & amp; C);
A=& amp; a; B=& amp; b; C=& amp; c;
Printf (" % d, % d, % d \ n ", * A, *, B * C);
If (* A & gt; * B)
{
T=* A;
*=* B;
* B=t;
}
If (* A & gt; * C)
{
T=* A;
* A=* C;
* C=t;
}
If (* B & gt; * C)
{
T=* B;
* * B=C;
* C=t;
}
2: printf (" % d, % d, % d \ n ", * A, *, B * C);

return 0;
}

CodePudding user response:

No target of Pointers to write data, which may cause nuclear accident launches,
  • Related