C Programming
What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));}

Garbage Value
333
433
444
000

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP