0
Please help I can't find the problem in this statements.
int main (){ double darr[10]; for(int x=0;x<10;x++){ cin>>darr[x]; } cout<<sizeo(darr); }
1 Answer
0
not sizeo.
It's sizeof.
int main (){ double darr[10]; for(int x=0;x<10;x++){ cin>>darr[x]; } cout<<sizeo(darr); }