C Programming
Which of the following is a complete function?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Partitioning the string into two strings.
Comparing the two strings to define the larger one.
Extracting a substring out of a string.
Combining two strings.
Merging two strings.

ANSWER DOWNLOAD EXAMIANS APP