C Programming
Which of the following is a complete function?

int funct(int x) { return x=x+1; }
int funct();
void funct(int) { printf(“Hello"); }
None of these
void funct(x) { printf(“Hello"); }

ANSWER DOWNLOAD EXAMIANS APP