Oct 5, 2015 at 5:43pm
Hello can some one post code of software to solve this
unsigned char k = 120
unsigned char n = 230
int p = 500
int c = 800
c = n + k
k = p + c
c += k
k += p
c = k + n
k += c
c = k + n
c = ?
in c++ in visual studio
Thanks
Oct 5, 2015 at 5:50pm
std::cout << "C is " << c << std::endl;
There you go. You already have all the code in what you wrote already.
Oct 5, 2015 at 6:31pm
Thanks a lot bro saved me a lot of time couting it manually :D