[問題] C程式2種的寫法不同點

作者: leemack (leemack)   2017-12-08 13:57:56
第一種
#include <>
int cc;
main()
{
while(1)
{
cc=1;
...
}
}
第一種
#include <>
int cc;
main()
{
while(1)
{
cc=1;
...
}
}
第二種
#include <>
//int cc;
main()
{
while(1)
{
int cc=1;
...
}
}
第二種是否比較不好? ex效率, 記憶體...
3q

Links booklink

Contact Us: admin [ a t ] ucptt.com