前提・実現したいこと
returnのところでエラーになってると思うんですがなぜreturn *aがエラーになるんですか?
該当のソースコード
c++
1#include<iostream> 2using namespace std; 3int main(){ 4 int* a,b; 5 b=1; 6 a=&b; 7 return *a; 8} 9//実行結果 Runtime error
回答2件
あなたの回答
tips
プレビュー
投稿2019/09/21 14:53
編集2019/09/21 16:14returnのところでエラーになってると思うんですがなぜreturn *aがエラーになるんですか?
c++
1#include<iostream> 2using namespace std; 3int main(){ 4 int* a,b; 5 b=1; 6 a=&b; 7 return *a; 8} 9//実行結果 Runtime error
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。