Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void putint(int a)
- {
- printf("%i", a);
- }
- int main()
- {
- int a;
- int b;
- int *div;
- int *mod;
- int resdiv = a / b;
- int resmod = a % b;
- *div = resdiv;
- *mod = resmod;
- }
Advertisement
Add Comment
Please, Sign In to add comment