Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by dunLE ( 12 years ago )
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int saberi(int,int)
int ispis(int)
int main(){
int a,b,c,d;
printf("Unesite broj: ");
scanf("%d",&a);
printf("Unesite broj: ");
scanf("%d",&b);
c=saberi(a,b);
d=ispis(c);
system("PAUSE");
return 0;
}
int saberi (int a,int b){
int c;
c=a+b;
return c;
}
int ispis(int a){
return printf("Rezultat je: %d\n",a);
}
Revise this Paste