Untitled
Anonymous
plain_text
01/07/2025 6:40 AM
268 B
11
Indexable
#include<stdlib.h>
main()
{
char str[]="Hello World";
char str1[11];
int i,len;
len=strlen(str);
for(i=0;i<len;i++)
{
str1[i]=str[i]^0;
printf("%c",str1[i]);
}
printf("\n");
}Editor is loading...
Leave a Comment