C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP