Question 37
Answer saved
Marked out of 1.00
What will be the output of the following C code?
1
2
#include<stdio.h>
#include<string.h>
3 int main()
4日
5
6
7
8
9
char a[20]="Hello, ";
char *b="World";
strcpy(a, "hello ");
strcat(a,b);
printf("%s",a);
10 }
Oa. Hello, hello World
Ob. World
Oc. Hello, World
d. hello World
Clear my choice