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
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP