I have 2 string value. str and str2 . i wish to xor the str and str2
My code is
#include <stdio.h>
int main(){
char str[] = "Hello";
char str2[] = "World";
char outupt;
output = str[] ^ str2[];
printf("%s",output)
return 0;
}