C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP