我正在练习不同的方法来为结构变量赋值.但当
我试过这个我得到一些垃圾的价值.这是代码.
我试过这个我得到一些垃圾的价值.这是代码.
#include<iostream> using namespace std ; struct Distance{ int feet ; int inches; }; void get_val(Distance ); void disp(Distance); int main(){ Distance l,m ; //Objects get_val(l); get_val(m); disp(l); disp(m); return 0 ; } void get_val(Distance length){ cout<<"\nEnter Length " <<"\nFeet : "; cin>>length.feet; cout<<"\nInches : "; cin>>length.inches; } void disp(Distance length){ cout<<"\nLength : \n" <<"Feet : "<<length.feet <<"\nInches : "<<length.inches ; }