0
How I can edit data after making cin>>to it in c++
c++
4 Answers
+ 3
int a;
cin>>a;
since input value is now stored in a,you can do with a as you wish
+ 2
Alaa Awad - you can perform basic operations with the value stored in variable a ( say ).
0
how I let user to edit after making cin
0
I want to make function that edit
value that I stored but user who make edit?