C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP