fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void zmien( int a,int b, int *wsk_x)
  5. {
  6. *wsk_x = a+b;
  7. }
  8.  
  9. int main()
  10. {
  11. int a, b, x;
  12. scanf("%d",&a);
  13. scanf("%d",&b);
  14.  
  15. zmien(a,b,&x);
  16. printf("%d",x);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.02s 1724KB
stdin
10 20
stdout
30