Welcome, guest! Login / Register - Why register?
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&#40;"PAUSE"&#41;;
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

Your Name: Code Language: