NinoSkopac

Untitled

Jun 3rd, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <conio.h>
  4.  
  5. int produkt(int x, int y) {
  6.  return x * y;
  7. }
  8.  
  9. int main() {
  10.   printf("%d", produkt(5, 6));
  11.   getch();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment