C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

All of these
Takes care of conditional compilation
Acts before compilation
Takes care of include files
Takes care of macros

ANSWER DOWNLOAD EXAMIANS APP