0
Prototype?
Functions, a function can be called before declaration. If it is prototyped
5 Answers
+ 1
The declaration is the prototype.
0
A function can be declared but not prototyped dependent on its position in relation to the int main
0
For example.
Void fhdj();//prototype
Int main(){
fhdj();
}
Void fhdj(){//declaration
}
Next program
Void hdjd(){//declaration
}
Int main(){
hdjd();
}



