タイトル: 変数の宣言
SEOタイトル: 【C++】変数の宣言
実装例
#include <stdio.h> int main(void){ int a; a = 1; printf("%d\n", a); return 0; } |
出力結果
1 2 |