MozillaIndia / RustIndia

Rust India Community Repository
MIT License
30 stars 25 forks source link

how to pass parameters externally in to the programming #16

Closed tejalavu96 closed 7 years ago

tejalavu96 commented 7 years ago

in c languague we will place { int a ; printf("enter the value of a";); scanf("%d",&a); printf("a="&a); } sample output:- enter the value of a10 a=10 how to do this parameter passing in rust programming languague