I am trying to teach myself programing in language c. I've been trying to figure out this problem but nomatter what I try it wont go in.Help?
Write a code that starts by printing n=5. Then the program should perform and print the following operations:
a. Create a new variable, m, and set equal to n
b. Redefine m to be the sum of m and n
c. Redefine m to be the quotient m/n
Answers
roger
printf("%s","n=5"); int m; m=5; m=m+n; m=m/n;
Impaled
Stop asking this question multiple times.
Was this article helpful?