C Programming
What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));}

Complier error
-10 to infinite
-10 to 0
-10 to -1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP