C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Helps to avoid repeated programming across programs.
Makes the debugging task easier.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP