C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

has # as the first character
comes before the first executable statement
need not start on the first column
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP