Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int n1=20;
- int n2=10;
- int total;
- total = n1 - n2; // subração
- printf(“Subtracao: %i”,total);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement