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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP