How to make software to solve linear fuctions ?

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
std::cout << "C is " << c << std::endl;
There you go. You already have all the code in what you wrote already.
Thanks a lot bro saved me a lot of time couting it manually :D
Topic archived. No new replies allowed.