(Choose 1 answer)
}
#include<stdio.h>
What will be the output of the following program?
#include <string.h>
void show(char str[])
int len = strlen(str);
for(int i=0;i<len;i++)printf("%c", str[i]);
}
}
int main()
{
char str[] = "abcd";
show(str);
return 0;
A. abcd
B. abcd
C. abcd
D. a,b,c,d
Exit 15