C/C++の宿題を片付けます 91代目
at TECH
5:デフォルトの名無しさん
07/06/23 23:55:14
URLリンク(c0x.coding-guidelines.com)
160 The function called at program startup is named main.
161 The implementation declares no prototype for this function.
162 It shall be defined with a return type of int and with no parameters:
int main(void) { /* ... */ }
163 or with two parameters (referred to here as argc and argv, though any names may be used, as they are local to the function in which they are declared):
int main(int argc, char *argv[]) { /* ... */ }
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
4770日前に更新/213 KB
担当:undef