0
how to make a empty function
hw need to make empty function on main(), but do not know how to make it.. plz help me
3 odpowiedzi
+ 1
#include <iostream>
using namespace std;
void empty(void) {
}
int main() {
empty();
return 0;
}
+ 1
No use, but maybe he needed a function template or something like that.
0
what is the use of empty function?